...
Code Block | ||
---|---|---|
| ||
# If user group specific view entitlement is required then extend the abstract class # com.intellectdesign.app.sigma.entitlements.UserGroupViewEntitlement # and configure the sub class for 'VIEW_ENTITLEMENT_CLASS' as # VIEW_ENTITLEMENT_CLASS=com.intellectdesign.canvas.entitlement.CanvasViewEntitlement # The class that is responsible to indicate where to get the list of currency # with their corresponding decimal digits. GLOBAL_CURRENCY_PROVIDER_CLASS = com.intellectdesign.canvas.viewdefinition.GlobalCurrencyDataProvider # The class that is responsible for the Rate Card conversion rates. RATE_CARD_FACOTORY_CLASS = com.intellectdesign.app.sigma.datasupport.SigmaRateCardFactory # The class that is responsible for bridging the calls between the action layer and # the handler layer. HANDLER_INVOKER_CLASS = com.intellectdesign.canvas.action.SimpleCanvasHandlerInvoker # The class that gives the ability to introduce a EJB hop for all calls between # the web and app layer. # HANDLER_INVOKER_CLASS=com.intellectdesign.canvas.action.RemoteCanvasHandlerInvoker # The following five properties are to be defined if the handler invoker is # set to RemoteCanvasHandlerInvoker: # 1. RequestHandlerInvokerEJB.JNDIName=JNDI Name for the EJB # 2. RequestHandlerInvokerEJB.ContextFactory=Initial Context Factory class for the target App Server # 3. RequestHandlerInvokerEJB.JNDIURL=JNDI URL to be used for the lookup # 4. RequestHandlerInvokerEJB.security.principal=User ID to be used for authentication. Leave blank if no intent to provide. # 5. RequestHandlerInvokerEJB.security.credentials=Password for the provided user ID. # The following property is to be defined if the handler Invoker is HttpCanvasHandlerInvoker. HTTP_HANDLER_INVOKER_URL = full HTTP or HTTPS URL till the servlet name # The class that gives the ability to introduce a HTTP URL based hop for all # calls between the web and app layer. # HANDLER_INVOKER_CLASS=com.intellectdesign.canvas.action.HttpCanvasHandlerInvoker # The class that bridges the calls between the Handler or Instruction Class and external datasource-EJB HAL_HANDLER_INVOKER_CLASS = com.intellectdesign.canvas.hal.HALInvoker # The class that is responsible for modifying the request params before handling to the handler. REQUEST_INTERCEPTOR_CLASS = com.intellectdesign.app.sigma.datasupport.SigmaRequestInterceptor # Configure the public key implementation class. This class should implement the PublicKey Interface. PUBLIC_KEY_CLASS = com.intellectdesign.canvas.servercomm.encryption.DHPublicKeyImpl # Configure the secret key implementation. This class should implement the EncryptionEngine Interface. ENCRYPTION_KEY_CLASS = com.intellectdesign.canvas.servercomm.encryption.AESGCMEEngineAESGCMEngine # The class that is responsible for providing the event details along with its preprocessor # configurations for the mapped action button in the FormContainerManager flow. EVENT_INTERCEPTOR_CLASS = com.intellectdesign.app.sigma.datasupport.SigmaEventInterceptor # Configuration to invoke the HA request creation for Web Service execution controller WS_INVOKER_CLASS = com.intellectdesign.canvas.hal.HALWebServiceInvoker LOGIN_HANDLER_INVOKER_CLASS = com.intellectdesign.canvas.login.handlers.LocalLoginHandlerInvoker # Use the following entry if the log-in delegation is to be done through a remote EJB lookup. # LOGIN_HANDLER_INVOKER_CLASS = com.intellectdesign.canvas.login.handlers.RemoteLoginHandlerInvoker # The following five properties are to be defined if the handler invoker is set to RemoteLoginHandlerInvoker. # 1. LoginEJB.JNDIName=JNDI Name for the EJB # 2. LoginEJB.ContextFactory=Initial Context Factory class for the target App Server # 3. LoginEJB.JNDIURL=JNDI URL to be used for the lookup # 4. LoginEJB.security.principal=User ID to be used for authentication. Leave blank if no intent to provide. # 5. LoginEJB.security.credentials=Password for the provided user ID. # LOGIN_HANDLER_INVOKER_CLASS=com.intellectdesign.canvas.login.handlers.HttpLoginHandlerInvoker # The following property is to be defined if the handler Invoker is HttpLoginHandlerInvoker. # HTTP_LOGIN_INVOKER_URL=full HTTP / HTTPS URL till the servlet name |
...