com.filenet.download.api

Class ConfigurationValue

  • java.lang.Object
    • com.filenet.download.api.ConfigurationValue


  • public class ConfigurationValue
    extends java.lang.Object
    Used to communicate the configuration for a feature's components. Use Feature.getConfigurationValues() to return a list of ConfigurationValue objects. The methods of this class return the name of a component in a feature and the type of configuration required for the component. For example, a component identified as a JAR file will have a corresponding "classpath" configuration value, indicating that the component must be referenced in the client application's classpath.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method and Description
      java.lang.String getType()
      Returns the type of configuration, indicating how to configure the component in your client environment.
      java.lang.String getValue()
      Returns the name of a feature component that needs to be configured, for example, "Jace.jar".
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getType

        public java.lang.String getType()
        Returns the type of configuration, indicating how to configure the component in your client environment. A returned type corresponds to the component identified in the ConfigurationValue.getValue() method. The types that can be returned are as follows:
        • classpath - add the JAR component to the classpath
        • jni - configure the component as a JNI (Java Native Interface) DLL.
        Returns:
        A String that represents the configuration value type.
      • getValue

        public java.lang.String getValue()
        Returns the name of a feature component that needs to be configured, for example, "Jace.jar".
        Returns:
        A String that represents the configuration value's value.

© Copyright IBM Corporation 2006, 2019. All rights reserved.