Class RSBankingService


  • public class RSBankingService
    extends java.lang.Object
    Rest service implementation that provides some methods by itself. Using the 'generate=true' option the missing interface methods will be automatically added by Jadex Rest publishing.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String info  
      org.glassfish.jersey.server.ResourceConfig rc  
      javax.ws.rs.core.UriInfo uriinfo  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • info

        public static final java.lang.String info
      • rc

        @Context
        public org.glassfish.jersey.server.ResourceConfig rc
      • uriinfo

        @Context
        public javax.ws.rs.core.UriInfo uriinfo
    • Constructor Detail

      • RSBankingService

        public RSBankingService()
    • Method Detail

      • getServiceInfo

        @GET
        @Produces("text/html")
        public java.lang.String getServiceInfo()
        Get the account statement.
        Parameters:
        request - The request.
        Returns:
        The account statement.
      • getAccountStatement

        @POST
        @Path("getAccountStatement")
        @Consumes("multipart/form-data")
        @Produces("application/xml")
        public java.lang.String getAccountStatement​(java.util.Date begin,
                                                    java.util.Date end)
        Get the account statement.
        Parameters:
        request - The request.
        Returns:
        The account statement.