public interface ResourceManager
Modifier and Type | Method and Description |
---|---|
org.apache.cxf.ws.addressing.ReferenceParametersType |
create(Representation initRepresentation)
Creates new Representation object from initRepresenation.
|
void |
delete(org.apache.cxf.ws.addressing.ReferenceParametersType ref)
Deletes Representation object given by reference parameter.
|
Representation |
get(org.apache.cxf.ws.addressing.ReferenceParametersType ref)
Returns Representation object given by reference parameter.
|
void |
put(org.apache.cxf.ws.addressing.ReferenceParametersType ref,
Representation newRepresentation)
Replaces Representation object given by reference parameter with newRepresentation.
|
Representation get(org.apache.cxf.ws.addressing.ReferenceParametersType ref)
ref
- Reference parameter returned by create method.ResourceManager#create(org.apache.cxf.ws.transfer.Representation)
void delete(org.apache.cxf.ws.addressing.ReferenceParametersType ref)
ref
- Reference parameter returned by create method.ResourceManager#create(org.apache.cxf.ws.transfer.Representation)
void put(org.apache.cxf.ws.addressing.ReferenceParametersType ref, Representation newRepresentation)
ref
- Reference parameter returned by create method.newRepresentation
- New Representation object, which will replace the old one.ResourceManager#create(org.apache.cxf.ws.transfer.Representation)
org.apache.cxf.ws.addressing.ReferenceParametersType create(Representation initRepresentation)
initRepresentation
- Representation object containing initial XML resource.Apache CXF