Package com.saperion.rs
Class HTMLGateway
- java.lang.Object
-
- com.saperion.rs.RestService
-
- com.saperion.rs.HTMLGateway
-
@Path("/htmlgateway") @Singleton public class HTMLGateway extends RestService
This JAX-RS resource represents the HTML gateway used by the Notes Bridge and Oracle Financials. URL: /htmlgateway- Author:
- sts
-
-
Field Summary
Fields Modifier and Type Field Description static com.saperion.common.logging.Logger
LOGGER
The logger used by this class.
-
Constructor Summary
Constructors Constructor Description HTMLGateway()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.Response
processFile(javax.ws.rs.core.UriInfo info, javax.servlet.http.HttpServletRequest request)
Processes calls to the URL /htmlgateway.javax.ws.rs.core.Response
processSaIIS(javax.ws.rs.core.UriInfo info, javax.servlet.http.HttpServletRequest request)
Processes calls to the URL /htmlgateway/saiis.dll.javax.ws.rs.core.Response
processSaIISBig(javax.ws.rs.core.UriInfo info, javax.servlet.http.HttpServletRequest request)
Processes calls to the URL /htmlgateway/Saiis.dll.-
Methods inherited from class com.saperion.rs.RestService
checkConnection, getConnection
-
-
-
-
Method Detail
-
processSaIIS
@GET @Path("saiis.dll") public javax.ws.rs.core.Response processSaIIS(@Context javax.ws.rs.core.UriInfo info, @Context javax.servlet.http.HttpServletRequest request) throws java.lang.Exception
Processes calls to the URL /htmlgateway/saiis.dll.- Parameters:
info
- injected UriInforequest
- injected HttpServletRequest- Returns:
- processing dependent Response.
- Throws:
java.lang.Exception
- if an error occurs.
-
processSaIISBig
@GET @Path("Saiis.dll") public javax.ws.rs.core.Response processSaIISBig(@Context javax.ws.rs.core.UriInfo info, @Context javax.servlet.http.HttpServletRequest request) throws java.lang.Exception
Processes calls to the URL /htmlgateway/Saiis.dll.- Parameters:
info
- injected UriInforequest
- injected HttpServletRequest- Returns:
- processing dependent Response.
- Throws:
java.lang.Exception
- if an error occurs.
-
processFile
@GET public javax.ws.rs.core.Response processFile(@Context javax.ws.rs.core.UriInfo info, @Context javax.servlet.http.HttpServletRequest request) throws java.lang.Exception
Processes calls to the URL /htmlgateway.- Parameters:
info
- injected UriInforequest
- injected HttpServletRequest- Returns:
- processing dependent Response.
- Throws:
java.lang.Exception
- if an error occurs.
-
-