Package org.apache.uima.resource.impl
Class PearSpecifier_impl
- java.lang.Object
-
- org.apache.uima.resource.metadata.impl.MetaDataObject_impl
-
- org.apache.uima.resource.impl.PearSpecifier_impl
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,MetaDataObject,PearSpecifier,ResourceServiceSpecifier,ResourceSpecifier,XMLizable
public class PearSpecifier_impl extends MetaDataObject_impl implements PearSpecifier
Reference implementation ofPearSpecifier.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
MetaDataObject_impl.MetaDataAttr, MetaDataObject_impl.SerialContext, MetaDataObject_impl.Serializer
-
-
Field Summary
Fields Modifier and Type Field Description private Parameter[]mParametersprivate NameValuePair[]mPearParametersprivate java.lang.StringmPearPathPEAR path setting(package private) static longserialVersionUIDprivate static XmlizationInfoXMLIZATION_INFO-
Fields inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
serialContext
-
-
Constructor Summary
Constructors Constructor Description PearSpecifier_impl()Creates a newPearSpecifier_impl.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Parameter[]getParameters()Deprecated.NameValuePair[]getPearParameters()Gets parameters that may be read by the pear resource class when it is initialized.java.lang.StringgetPearPath()Retrieves the PEAR path at which the pear Resource is located.protected XmlizationInfogetXmlizationInfo()To be implemented by subclasses to return information describing how to represent this object in XML.voidsetParameters(Parameter... parameters)Deprecated.voidsetPearParameters(NameValuePair... pearParameters)Sets pearParameters that may be read by the pear resource class when it is initialized.voidsetPearPath(java.lang.String aPearPath)Sets the PEAR path at which a Resource is located.-
Methods inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
buildFromXMLElement, buildFromXMLElement, clone, equals, getAdditionalAttributes, getAttributeClass, getAttributeValue, getInfoset, getMatchingNode, getPropertyDescriptors, getPropertyXmlInfo, getRelativePathBase, getSerialContext, getSourceUrl, getSourceUrlString, getWrapperClass, getXMLAttributes, hashCode, isModifiable, listAttributes, readArrayPropertyValueFromXMLElement, readMapPropertyFromXml, readPropertyValueFromXMLElement, readUnknownPropertyValueFromXMLElement, resolveSettings, setAttributeValue, setInfoset, setSourceUrl, setSourceUrlIfNull, toString, toXML, toXML, toXML, toXML, valueIsNullOrEmptyArray, writeArrayPropertyAsElement, writeMapPropertyToXml, writePropertyAsElement
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.uima.resource.metadata.MetaDataObject
clone, equals, getAttributeValue, getSourceUrl, getSourceUrlString, isModifiable, listAttributes, setAttributeValue, setSourceUrl
-
Methods inherited from interface org.apache.uima.util.XMLizable
buildFromXMLElement, buildFromXMLElement, toXML, toXML, toXML, toXML
-
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
- See Also:
- Constant Field Values
-
mPearPath
private java.lang.String mPearPath
PEAR path setting
-
mParameters
private Parameter[] mParameters
-
mPearParameters
private NameValuePair[] mPearParameters
-
XMLIZATION_INFO
private static final XmlizationInfo XMLIZATION_INFO
-
-
Method Detail
-
getParameters
@Deprecated public Parameter[] getParameters()
Deprecated.Description copied from interface:PearSpecifierGets legacy string-valued parameters that may be read by the pear resource class when it is initialized. These parameters are represented as follows in the PEAR specifier XML:<parameters> <parameter name="param1" value="val1"/> </parameters>- Specified by:
getParametersin interfacePearSpecifier- Returns:
- an array of parameters. This will never return
null.
-
getPearParameters
public NameValuePair[] getPearParameters()
Description copied from interface:PearSpecifierGets parameters that may be read by the pear resource class when it is initialized. These parameters are represented as follows in the PEAR specifier XML:<pearParameters> <nameValuePair> <name>param1</name> <value><string>val1</string></value> </nameValuePair> </pearParameters>- Specified by:
getPearParametersin interfacePearSpecifier- Returns:
- an array of pearParameters. This will never return
null.
-
setParameters
@Deprecated public void setParameters(Parameter... parameters)
Deprecated.Description copied from interface:PearSpecifierSets legacy string-valued parameters that may be read by the pear resource class when it is initialized.- Specified by:
setParametersin interfacePearSpecifier- Parameters:
parameters- the Parameters to set.- See Also:
PearSpecifier.getParameters()
-
setPearParameters
public void setPearParameters(NameValuePair... pearParameters)
Description copied from interface:PearSpecifierSets pearParameters that may be read by the pear resource class when it is initialized.- Specified by:
setPearParametersin interfacePearSpecifier- Parameters:
pearParameters- the pearParameters to set.- See Also:
PearSpecifier.getPearParameters()
-
getPearPath
public java.lang.String getPearPath()
Description copied from interface:PearSpecifierRetrieves the PEAR path at which the pear Resource is located.- Specified by:
getPearPathin interfacePearSpecifier- Returns:
- a string
-
setPearPath
public void setPearPath(java.lang.String aPearPath)
Description copied from interface:PearSpecifierSets the PEAR path at which a Resource is located.- Specified by:
setPearPathin interfacePearSpecifier- Parameters:
aPearPath- a pear path string
-
getXmlizationInfo
protected XmlizationInfo getXmlizationInfo()
Description copied from class:MetaDataObject_implTo be implemented by subclasses to return information describing how to represent this object in XML.- Specified by:
getXmlizationInfoin classMetaDataObject_impl- Returns:
- information defining this object's XML representation
-
-