@Consumes(value="application/json")
@Produces(value="application/json")
public interface DocumentResource
| Modifier and Type | Method and Description |
|---|---|
List<SendEventRepresentation> |
getSendEvents(String destinyType,
String result,
Integer firstResult,
Integer maxResults) |
javax.ws.rs.core.Response |
getXml() |
void |
remove() |
javax.ws.rs.core.Response |
report() |
void |
sendToCustomer() |
void |
sendToThirdParty() |
void |
sendToThirdPartyByEmail() |
DocumentRepresentation |
toRepresentation() |
void |
update(DocumentRepresentation documentRepresentation) |
@GET DocumentRepresentation toRepresentation()
@PUT void update(DocumentRepresentation documentRepresentation)
@DELETE void remove()
@Path(value="report") @GET javax.ws.rs.core.Response report()
@GET @Path(value="representation/xml") @Produces(value="application/xml") javax.ws.rs.core.Response getXml()
@POST @Path(value="send-to-customer") void sendToCustomer()
@POST @Path(value="send-to-third-party") void sendToThirdParty()
@POST @Path(value="send-to-third-party-by-email") void sendToThirdPartyByEmail()
Copyright © 2018. All rights reserved.