Subversion Repositories XServices

Compare Revisions

No changes between revisions

Ignore whitespace Rev 122 → Rev 123

/xservices/tags/20130205r/src/java/net/brutex/xservices/ws/rs/FileInfo.java
0,0 → 1,20
package net.brutex.xservices.ws.rs;
 
import javax.ws.rs.DefaultValue;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.Context;
import javax.ws.rs.core.HttpHeaders;
import javax.ws.rs.core.Response;
 
@Path("/FileService/")
@Produces({"application/xml"})
public abstract interface FileInfo
{
@GET
@Path("getFiles/")
public abstract Response getFiles(@Context HttpHeaders paramHttpHeaders, @QueryParam("directory") String paramString1, @QueryParam("includeDirectories") @DefaultValue("0") boolean paramBoolean1, @QueryParam("includeFiles") @DefaultValue("1") boolean paramBoolean2, @QueryParam("depth") @DefaultValue("1") int paramInt1, @QueryParam("search") String paramString2, @QueryParam("itemsPerPage") @DefaultValue("50") int paramInt2, @QueryParam("page") @DefaultValue("1") int paramInt3);
}
 
Property changes:
Added: svn:mime-type
+text/plain
\ No newline at end of property