com.filenet.download.api
Class ConfigurationValue
- java.lang.Object
-
- com.filenet.download.api.ConfigurationValue
-
public class ConfigurationValue extends java.lang.ObjectUsed to communicate the configuration for a feature's components. UseFeature.getConfigurationValues()to return a list ofConfigurationValueobjects. 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.StringgetType()Returns the type of configuration, indicating how to configure the component in your client environment.java.lang.StringgetValue()Returns the name of a feature component that needs to be configured, for example, "Jace.jar".
-
-
-
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 theConfigurationValue.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
Stringthat 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
Stringthat represents the configuration value's value.
-
-