URLPassivationHandler.java 657 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.aemfd.docmanager.internal.passivation.url;

import com.adobe.aemfd.docmanager.internal.passivation.url.AbstractURLPassivationHandler;
import com.adobe.aemfd.docmanager.passivation.PassivationType;
import java.io.IOException;
import java.net.URL;

public class URLPassivationHandler
extends AbstractURLPassivationHandler {
    private URL url;

    public URLPassivationHandler(URL url) {
        this.url = url;
    }

    protected URL getURL() throws IOException {
        return this.url;
    }

    public void release(boolean passivated, PassivationType pType) {
        this.url = null;
    }
}