2011-01-29 20:42:06 +01:00
|
|
|
package net.brutex.xservices.ws;
|
|
|
|
|
2011-05-03 16:10:04 +02:00
|
|
|
import java.util.List;
|
|
|
|
|
2011-04-20 18:59:34 +02:00
|
|
|
import javax.activation.DataHandler;
|
2011-01-29 20:42:06 +01:00
|
|
|
import javax.jws.WebMethod;
|
|
|
|
import javax.jws.WebParam;
|
|
|
|
import javax.jws.WebService;
|
|
|
|
|
|
|
|
import net.brutex.xservices.types.ArchiveResource;
|
2011-04-20 18:59:34 +02:00
|
|
|
import net.brutex.xservices.types.AttachmentType;
|
2011-01-29 20:42:06 +01:00
|
|
|
import net.brutex.xservices.types.FileResource;
|
|
|
|
import net.brutex.xservices.types.FileSetResource;
|
2011-05-03 16:10:04 +02:00
|
|
|
import net.brutex.xservices.types.ReplacePattern;
|
2011-01-29 20:42:06 +01:00
|
|
|
import net.brutex.xservices.types.ReturnCode;
|
|
|
|
import net.brutex.xservices.util.BrutexNamespaces;
|
|
|
|
@WebService(targetNamespace = BrutexNamespaces.WS_XSERVICES)
|
|
|
|
public interface FileService {
|
|
|
|
|
|
|
|
@WebMethod(operationName = "basename")
|
|
|
|
public abstract ReturnCode basename(
|
|
|
|
@WebParam(name = "file") String filename,
|
|
|
|
@WebParam(name = "suffix") String suffix);
|
|
|
|
|
2011-04-20 18:59:34 +02:00
|
|
|
@WebMethod(operationName = "downloadFile")
|
|
|
|
public abstract AttachmentType downloadFile(
|
|
|
|
@WebParam(name = "file") FileResource res);
|
|
|
|
|
|
|
|
@WebMethod(operationName = "uploadFile")
|
|
|
|
public abstract String uploadFile(
|
|
|
|
@WebParam(name = "file") AttachmentType file);
|
|
|
|
|
2011-01-29 20:42:06 +01:00
|
|
|
@WebMethod(operationName = "copy")
|
|
|
|
public abstract ReturnCode copy(
|
|
|
|
@WebParam(name = "fileset") FileSetResource src,
|
|
|
|
@WebParam(name = "todir") String todir,
|
|
|
|
@WebParam(name = "preservelastmodified") boolean plm,
|
|
|
|
@WebParam(name = "overwrite") boolean overwrite,
|
|
|
|
@WebParam(name = "encoding") String encoding) throws XServicesFault;
|
|
|
|
|
|
|
|
@WebMethod(operationName = "loadResource")
|
|
|
|
public abstract ReturnCode loadRes(
|
|
|
|
@WebParam(name = "resource") FileResource res,
|
|
|
|
@WebParam(name = "encoding") String encoding);
|
|
|
|
|
|
|
|
@WebMethod(operationName = "loadResourceFromArchive")
|
|
|
|
public abstract ReturnCode loadResFromArchive(
|
|
|
|
@WebParam(name = "archiveresource") ArchiveResource res,
|
|
|
|
@WebParam(name = "encoding") String encoding);
|
|
|
|
|
|
|
|
@WebMethod(operationName = "echoToFile")
|
|
|
|
public abstract ReturnCode echo2file(
|
|
|
|
@WebParam(name = "message") String message,
|
|
|
|
@WebParam(name = "file") String file,
|
|
|
|
@WebParam(name = "encoding") String encoding,
|
|
|
|
@WebParam(name = "append") boolean append);
|
|
|
|
|
|
|
|
@WebMethod(operationName = "changeOwner")
|
|
|
|
public abstract ReturnCode changeOwner(
|
|
|
|
@WebParam(name = "fileset") FileSetResource res,
|
|
|
|
@WebParam(name = "owner") String owner);
|
|
|
|
|
|
|
|
@WebMethod(operationName = "changeGroup")
|
|
|
|
public abstract ReturnCode changeGroup(
|
|
|
|
@WebParam(name = "fileset") FileSetResource res,
|
|
|
|
@WebParam(name = "group") String group);
|
|
|
|
|
|
|
|
@WebMethod(operationName = "changeMode")
|
|
|
|
public abstract ReturnCode changeMode(
|
|
|
|
@WebParam(name = "fileset") FileSetResource res,
|
|
|
|
@WebParam(name = "permissions") String perm);
|
2011-05-03 16:10:04 +02:00
|
|
|
|
|
|
|
@WebMethod(operationName = "replaceInFile")
|
|
|
|
public abstract ReturnCode replaceInFile(
|
|
|
|
@WebParam(name = "file") FileResource res,
|
|
|
|
@WebParam(name = "search") String search,
|
|
|
|
@WebParam(name = "replace") String replace);
|
|
|
|
|
|
|
|
@WebMethod(operationName = "replaceInFile2")
|
|
|
|
public abstract ReturnCode replaceInFile2(
|
|
|
|
@WebParam(name = "file") FileResource res,
|
|
|
|
@WebParam(name = "patternList") List<ReplacePattern> patternList);
|
|
|
|
|
|
|
|
@WebMethod(operationName = "replaceInFileRegEx")
|
|
|
|
public abstract ReturnCode replaceInFileRegEx(
|
|
|
|
@WebParam(name = "file") FileResource res,
|
|
|
|
@WebParam(name = "search") String search,
|
|
|
|
@WebParam(name = "replace") String replace,
|
|
|
|
@WebParam(name = "flags") String flags);
|
2011-01-29 20:42:06 +01:00
|
|
|
}
|