Class RemoteConnector

java.lang.Object
oracle.as.scheduler.request.RemoteConnector
Direct Known Subclasses:
RemoteAsyncHelper

public class RemoteConnector extends Object
Helper class for remote EJB job to callback ESS's beans
  • Constructor Details

    • RemoteConnector

      public RemoteConnector()
  • Method Details

    • getInitialContext

      public Context getInitialContext(RequestParameters params) throws NamingException, SchedulerException
      Returns an context of ESS server for JNDI lookup. This may return an anonymous/authenticated context based on the access of JNDI tree of ESS Server.
      Parameters:
      params - the request parameters
      Returns:
      context the basic initial context
      Throws:
      NamingException - if a problem occurs during context initialization
      SchedulerException - if a problem occurs during CSF lookup
    • getInitialContext

      public Context getInitialContext(RequestParameters params, String username, char[] password) throws NamingException
      Returns an context of ESS server for JNDI lookup. This return an authenticated context based on the access of JNDI tree of ESS Server.
      Parameters:
      params - the request parameters
      username - the username of the secured jndi
      password - the password of the secured jndi
      Returns:
      context the basic initial context
      Throws:
      NamingException - if a problem occurs during context initialization
    • getInitialContext

      public Context getInitialContext(String jndiProviderUrl, String username, char[] password) throws NamingException
      Returns an context of ESS server for JNDI lookup. This return an authenticated context based on the access of JNDI tree of ESS Server.
      Parameters:
      jndiProviderUrl - the jndiProviderUrl string
      username - the username of the secured jndi
      password - the password of the secured jndi
      Returns:
      context the basic initial context
      Throws:
      NamingException - if a problem occurs during context initialization
    • getInitialContext

      public Context getInitialContext(String jndiProviderUrl) throws NamingException
      Returns an context of ESS server for JNDI lookup. This return an anonymous context based on the access of JNDI tree of ESS Server.
      Parameters:
      jndiProviderUrl - the jndiProviderUrl string
      Returns:
      context the basic initial context
      Throws:
      NamingException - if a problem occurs during context initialization
    • getAsyncRequestEJB

      public AsyncRequestBeanRemote getAsyncRequestEJB(RequestParameters params) throws NamingException, SchedulerException
      Returns the stub of AsyncRequestBean through JNDI lookup on remote ESS server.
      Parameters:
      params - the requestParameters instance
      Returns:
      the remote instance of AsyncRequestBean
      Throws:
      NamingException - if a problem occurs during context
      SchedulerException - if unable to lookup JNDI initialization
    • getRuntimeServiceEJB

      public RuntimeServiceRemote getRuntimeServiceEJB(RequestParameters params) throws NamingException, SchedulerException
      Returns the stub of RuntimeServiceBean through JNDI lookup on remote ESS server.
      Parameters:
      params - the requestParameters instance
      Returns:
      the remote instance of RuntimeServiceBean
      Throws:
      NamingException - if a problem occurs during context
      SchedulerException - if unable to lookup JNDI initialization
    • getMetadataServiceEJB

      public MetadataServiceRemote getMetadataServiceEJB(RequestParameters params) throws NamingException, SchedulerException
      Returns the stub of MetadataServiceBean through JNDI lookup on remote ESS server.
      Parameters:
      params - the requestParameters instance
      Returns:
      the remote instance of MetadataServiceBean
      Throws:
      NamingException - if a problem occurs during context
      SchedulerException - if unable to lookup JNDI initialization
    • getAsyncRequestEJB

      public AsyncRequestBeanRemote getAsyncRequestEJB(RequestParameters params, String jndiMappedName) throws NamingException, SchedulerException
      Returns the stub of AsyncRequestBean through JNDI lookup on remote ESS server.
      Parameters:
      params - the requestParameters instance
      jndiMappedName - name of AsyncRequest bean bound to JNDI
      Returns:
      the remote instance of AsyncRequestBean
      Throws:
      NamingException - if a problem occurs during context initialization
      SchedulerException - if a problem occurs during CSF lookup
    • getRuntimeServiceEJB

      public RuntimeServiceRemote getRuntimeServiceEJB(RequestParameters params, String jndiMappedName) throws NamingException, SchedulerException
      Returns the stub of RuntimeServiceBean through JNDI lookup on remote ESS server.
      Parameters:
      params - the requestParameters instance
      jndiMappedName - name of RutimeService bean bound to JNDI
      Returns:
      the remote instance of RuntimeServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
      SchedulerException - if a problem occurs during CSF lookup
    • getMetadataServiceEJB

      public MetadataServiceRemote getMetadataServiceEJB(RequestParameters params, String jndiMappedName) throws NamingException, SchedulerException
      Returns the stub of MetadataServiceBean through JNDI lookup on remote ESS server.
      Parameters:
      params - the requestParameters instance
      jndiMappedName - name of MetadataService bean bound to JNDI
      Returns:
      the remote instance of MetadataServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
      SchedulerException - if a problem occurs during CSF lookup
    • getAsyncRequestEJB

      public AsyncRequestBeanRemote getAsyncRequestEJB(RequestParameters params, String username, char[] password) throws NamingException
      Returns the stub of AsyncRequestBean through secured JNDI lookup on remote ESS server.
      Parameters:
      params - the requestParameters instance
      username - the username of the secured jndi
      password - the password of the secured jndi
      Returns:
      the remote instance of AsyncRequestBean
      Throws:
      NamingException - if a problem occurs during context initialization
    • getRuntimeServiceEJB

      public RuntimeServiceRemote getRuntimeServiceEJB(RequestParameters params, String username, char[] password) throws NamingException
      Returns the stub of RuntimeServiceBean through secured JNDI lookup on remote ESS server.
      Parameters:
      params - the requestParameters instance
      username - the username of the secured jndi
      password - the password of the secured jndi
      Returns:
      the remote instance of RuntimeServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
    • getMetadataServiceEJB

      public MetadataServiceRemote getMetadataServiceEJB(RequestParameters params, String username, char[] password) throws NamingException
      Returns the stub of MetadataServiceBean through secured JNDI lookup on remote ESS server.
      Parameters:
      params - the requestParameters instance
      username - the username of the secured jndi
      password - the password of the secured jndi
      Returns:
      the remote instance of MetadataServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
    • getAsyncRequestEJB

      public AsyncRequestBeanRemote getAsyncRequestEJB(Context context) throws NamingException
      Returns the stub of AsyncRequestBean through JNDI lookup on remote ESS server.
      Parameters:
      context - the initial context
      Returns:
      the remote instance of MetadataServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
    • getRuntimeServiceEJB

      public RuntimeServiceRemote getRuntimeServiceEJB(Context context) throws NamingException
      Returns the stub of RuntimeService through JNDI lookup on remote ESS server.
      Parameters:
      context - the initial context
      Returns:
      the remote instance of RuntimeServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
    • getMetadataServiceEJB

      public MetadataServiceRemote getMetadataServiceEJB(Context context) throws NamingException
      Returns the stub of MetadataService through JNDI lookup on remote ESS server.
      Parameters:
      context - the initial context
      Returns:
      the remote instance of MetadataServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
    • getAsyncRequestEJB

      public AsyncRequestBeanRemote getAsyncRequestEJB(Context context, String jndiMappedName) throws NamingException
      Returns the stub of AsyncRequestBean through JNDI lookup on remote ESS server.
      Parameters:
      context - the initial context
      jndiMappedName - name of AsyncRequest bean bound to JNDI
      Returns:
      the remote instance of MetadataServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
    • getRuntimeServiceEJB

      public RuntimeServiceRemote getRuntimeServiceEJB(Context context, String jndiMappedName) throws NamingException
      Returns the stub of RuntimeService through JNDI lookup on remote ESS server.
      Parameters:
      context - the initial context
      jndiMappedName - name of RuntimeService bean bound to JNDI
      Returns:
      the remote instance of RuntimeServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
    • getMetadataServiceEJB

      public MetadataServiceRemote getMetadataServiceEJB(Context context, String jndiMappedName) throws NamingException
      Returns the stub of MetadataService through JNDI lookup on remote ESS server.
      Parameters:
      context - the initial context
      jndiMappedName - name of MetadataService bean bound to JNDI
      Returns:
      the remote instance of MetadataServiceBean
      Throws:
      NamingException - if a problem occurs during context initialization
    • lookupCredentials

      public oracle.security.jps.service.credstore.PasswordCredential lookupCredentials(String csfKey) throws SchedulerException
      Lookup the Key in Key store
      Parameters:
      csfKey - string the value of CSF key
      Returns:
      instance of PasswordCredential
      Throws:
      SchedulerException - when there's an exception during lookup