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