public class RSBankingService
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
info |
org.glassfish.jersey.server.ResourceConfig |
rc |
javax.ws.rs.core.UriInfo |
uriinfo |
Constructor and Description |
---|
RSBankingService() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getAccountStatement(java.util.Date begin,
java.util.Date end)
Get the account statement.
|
java.lang.String |
getServiceInfo()
Get the account statement.
|
public static final java.lang.String info
@Context public org.glassfish.jersey.server.ResourceConfig rc
@Context public javax.ws.rs.core.UriInfo uriinfo
@GET @Produces(value="text/html") public java.lang.String getServiceInfo()
request
- The request.@POST @Path(value="getAccountStatement") @Consumes(value="multipart/form-data") @Produces(value="application/xml") public java.lang.String getAccountStatement(java.util.Date begin, java.util.Date end)
request
- The request.