Class RSBankingService
- java.lang.Object
-
- jadex.webservice.examples.rs.banking.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.
-
-
Constructor Summary
Constructors Constructor Description RSBankingService()
-
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.
-
-
-
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.
-
-