Class RidcConnectionUtils

java.lang.Object
oracle.wcc.ridc.adfca.framework.RidcConnectionUtils

public class RidcConnectionUtils extends Object
Util class to manage ridc connections.
  • Constructor Details

    • RidcConnectionUtils

      public RidcConnectionUtils()
  • Method Details

    • getMessage

      public static String getMessage(oracle.adf.share.logging.ADFLogger logger, String msgKey, Object... params)
      Gets a translated message using the resource bundle associated with logger.
      Parameters:
      logger - The logger used to get the resource bundle
      msgKey - The resource key
      params - Additional parameters to be formatted in the message
      Returns:
      The message
    • logServiceException

      public static void logServiceException(oracle.adf.share.logging.ADFLogger logger, String clazz, String method, ServiceException se, String connectionName, String operation)
    • logIdcClientException

      public static void logIdcClientException(oracle.adf.share.logging.ADFLogger logger, String clazz, String method, IdcClientException e, String connectionName, String operation)
    • generateConnectionsFile

      public static void generateConnectionsFile() throws IOException
      Creates the connections.xml file and internally calls generateConnectionType() to create the rc_ext.xml file.
      Throws:
      IOException
    • __createWccConnection

      public static oracle.adf.mbean.share.connection.wcc.WccConnection __createWccConnection(String connectionName, String connectionUrl) throws NamingException
      Creates the connection architecture connections.xml file at the default location with connection name and connection url property.
      Parameters:
      connectionName - name of ridc connection
      connectionUrl - name of ridc connection url
      Returns:
      RidcConnectionImpl
      Throws:
      NamingException
    • __createWccConnection

      public static oracle.adf.mbean.share.connection.wcc.WccConnection __createWccConnection(String connectionName, String connectionUrl, String connectionXmlProvider) throws NamingException
      Creates the connection architecture connections.xml file at the specified location with connection name and connection url property.
      Parameters:
      connectionName - name of ridc connection
      connectionUrl - name of ridc connection url
      connectionXmlProvider - location of connections.xml provider
      Returns:
      RidcConnectionImpl
      Throws:
      NamingException
    • __updateWccConnection

      public static oracle.adf.mbean.share.connection.wcc.WccConnection __updateWccConnection(String connectionName, String connectionUrl) throws NamingException
      Updates the connection architecture connections.xml file url property at the default location for a given connection name.
      Parameters:
      connectionName - name of ridc connection
      connectionUrl - name of ridc connection url
      Returns:
      RidcConnectionImpl
      Throws:
      NamingException
    • __updateWccConnection

      public static oracle.adf.mbean.share.connection.wcc.WccConnection __updateWccConnection(String connectionName, String connectionUrl, String connectionXmlProvider) throws NamingException
      Updates the connection architecture connections.xml file url property at the specified location for a given connection name.
      Parameters:
      connectionName - name of ridc connection
      connectionUrl - name of ridc connection url
      connectionXmlProvider - location of connections.xml provider
      Returns:
      RidcConnectionImpl
      Throws:
      NamingException
    • __getWccConnection

      public static oracle.adf.mbean.share.connection.wcc.WccConnection __getWccConnection(String connectionName) throws NamingException
      Returns the Ridc connection object for a given connection name.
      Parameters:
      connectionName - name of ridc connection
      Returns:
      RidcConnectionImpl
      Throws:
      NamingException
    • nonEmptyPostTrim

      public static boolean nonEmptyPostTrim(String s)
      Tests if a given string when trimmed has length greater than 0.
      Parameters:
      s - the string
      Returns:
      true if string not null and when trimmed has length greater than 0
    • nonEmpty

      public static boolean nonEmpty(String s)
      Tests if a given string has length greater than 0.
      Parameters:
      s - the string
      Returns:
      true if string not null and has length greater than 0
    • normalizeEmptyStringToNull

      public static final String normalizeEmptyStringToNull(String s)
      Normalizes an empty string to null.
      Parameters:
      s - the string
      Returns:
      the string or null if the string is empty