ResourceManager.java
842 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ConsumerType
* org.apache.sling.api.resource.Resource
*/
package com.adobe.granite.rest;
import aQute.bnd.annotation.ConsumerType;
import com.adobe.granite.rest.RequestException;
import com.adobe.granite.rest.RestException;
import java.util.List;
import org.apache.sling.api.resource.Resource;
@ConsumerType
public interface ResourceManager {
public boolean copy(Resource var1, String var2, int var3) throws UnsupportedOperationException, RequestException, RestException;
public boolean move(Resource var1, String var2) throws UnsupportedOperationException, RequestException, RestException;
public List<Resource> find(Resource var1, String var2) throws UnsupportedOperationException, RequestException, RestException;
}