Interface Resource
-
- All Known Implementing Classes:
ResourceLocal,ResourceRemote
@Addressing(enabled=true, required=true) public interface ResourceThe interface definition of a Resource web service, according to the specification.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.cxf.ws.transfer.DeleteResponsedelete(org.apache.cxf.ws.transfer.Delete body)org.apache.cxf.ws.transfer.GetResponseget(org.apache.cxf.ws.transfer.Get body)org.apache.cxf.ws.transfer.PutResponseput(org.apache.cxf.ws.transfer.Put body)
-
-
-
Method Detail
-
get
@Action(input="http://www.w3.org/2011/03/ws-tra/Get", output="http://www.w3.org/2011/03/ws-tra/GetResponse") org.apache.cxf.ws.transfer.GetResponse get(org.apache.cxf.ws.transfer.Get body)
-
delete
@Action(input="http://www.w3.org/2011/03/ws-tra/Delete", output="http://www.w3.org/2011/03/ws-tra/DeleteResponse") org.apache.cxf.ws.transfer.DeleteResponse delete(org.apache.cxf.ws.transfer.Delete body)
-
put
@Action(input="http://www.w3.org/2011/03/ws-tra/Put", output="http://www.w3.org/2011/03/ws-tra/PutResponse") org.apache.cxf.ws.transfer.PutResponse put(org.apache.cxf.ws.transfer.Put body)
-
-