public class EnvironmentType
extends java.lang.Object
Java class for environmentType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="environmentType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="moduleId" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}artifactType" minOccurs="0"/> <element name="dependencies" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}dependenciesType" minOccurs="0"/> <element name="bundle-activator" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="bundle-classPath" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="import-package" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="export-package" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="require-bundle" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="dynamic-import-package" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="hidden-classes" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}classFilterType" minOccurs="0"/> <element name="non-overridable-classes" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}classFilterType" minOccurs="0"/> <element name="private-classes" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}classFilterType" minOccurs="0"/> <element name="inverse-classloading" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}emptyType" minOccurs="0"/> <element name="suppress-default-environment" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}emptyType" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
bundleActivator |
protected java.util.List<java.lang.String> |
bundleClassPath |
protected DependenciesType |
dependencies |
protected java.util.List<java.lang.String> |
dynamicImportPackage |
protected java.util.List<java.lang.String> |
exportPackage |
protected ClassFilterType |
hiddenClasses |
protected java.util.List<java.lang.String> |
importPackage |
protected EmptyType |
inverseClassloading |
protected ArtifactType |
moduleId |
protected ClassFilterType |
nonOverridableClasses |
protected ClassFilterType |
privateClasses |
protected java.util.List<java.lang.String> |
requireBundle |
protected EmptyType |
suppressDefaultEnvironment |
Constructor and Description |
---|
EnvironmentType() |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getBundleActivator()
Gets the value of the bundleActivator property.
|
java.util.List<java.lang.String> |
getBundleClassPath()
Gets the value of the bundleClassPath property.
|
DependenciesType |
getDependencies()
Gets the value of the dependencies property.
|
java.util.List<java.lang.String> |
getDynamicImportPackage()
Gets the value of the dynamicImportPackage property.
|
java.util.List<java.lang.String> |
getExportPackage()
Gets the value of the exportPackage property.
|
ClassFilterType |
getHiddenClasses()
Gets the value of the hiddenClasses property.
|
java.util.List<java.lang.String> |
getImportPackage()
Gets the value of the importPackage property.
|
ArtifactType |
getModuleId()
Gets the value of the moduleId property.
|
ClassFilterType |
getNonOverridableClasses()
Gets the value of the nonOverridableClasses property.
|
ClassFilterType |
getPrivateClasses()
Gets the value of the privateClasses property.
|
java.util.List<java.lang.String> |
getRequireBundle()
Gets the value of the requireBundle property.
|
boolean |
isInverseClassloading()
Gets the value of the inverseClassloading property.
|
boolean |
isSuppressDefaultEnvironment()
Gets the value of the suppressDefaultEnvironment property.
|
void |
setBundleActivator(java.lang.String value)
Sets the value of the bundleActivator property.
|
void |
setDependencies(DependenciesType value)
Sets the value of the dependencies property.
|
void |
setHiddenClasses(ClassFilterType value)
Sets the value of the hiddenClasses property.
|
void |
setInverseClassloading(boolean value)
Sets the value of the inverseClassloading property.
|
void |
setModuleId(ArtifactType value)
Sets the value of the moduleId property.
|
void |
setNonOverridableClasses(ClassFilterType value)
Sets the value of the nonOverridableClasses property.
|
void |
setPrivateClasses(ClassFilterType value)
Sets the value of the privateClasses property.
|
void |
setSuppressDefaultEnvironment(boolean value)
Sets the value of the suppressDefaultEnvironment property.
|
protected ArtifactType moduleId
protected DependenciesType dependencies
protected java.lang.String bundleActivator
protected java.util.List<java.lang.String> bundleClassPath
protected java.util.List<java.lang.String> importPackage
protected java.util.List<java.lang.String> exportPackage
protected java.util.List<java.lang.String> requireBundle
protected java.util.List<java.lang.String> dynamicImportPackage
protected ClassFilterType hiddenClasses
protected ClassFilterType nonOverridableClasses
protected ClassFilterType privateClasses
protected EmptyType inverseClassloading
protected EmptyType suppressDefaultEnvironment
public ArtifactType getModuleId()
ArtifactType
public void setModuleId(ArtifactType value)
value
- allowed object is
ArtifactType
public DependenciesType getDependencies()
DependenciesType
public void setDependencies(DependenciesType value)
value
- allowed object is
DependenciesType
public java.lang.String getBundleActivator()
String
public void setBundleActivator(java.lang.String value)
value
- allowed object is
String
public java.util.List<java.lang.String> getBundleClassPath()
set
method for the bundleClassPath property.
For example, to add a new item, do as follows:
getBundleClassPath().add(newItem);Objects of the following type(s) are allowed in the list
String
public java.util.List<java.lang.String> getImportPackage()
set
method for the importPackage property.
For example, to add a new item, do as follows:
getImportPackage().add(newItem);Objects of the following type(s) are allowed in the list
String
public java.util.List<java.lang.String> getExportPackage()
set
method for the exportPackage property.
For example, to add a new item, do as follows:
getExportPackage().add(newItem);Objects of the following type(s) are allowed in the list
String
public java.util.List<java.lang.String> getRequireBundle()
set
method for the requireBundle property.
For example, to add a new item, do as follows:
getRequireBundle().add(newItem);Objects of the following type(s) are allowed in the list
String
public java.util.List<java.lang.String> getDynamicImportPackage()
set
method for the dynamicImportPackage property.
For example, to add a new item, do as follows:
getDynamicImportPackage().add(newItem);Objects of the following type(s) are allowed in the list
String
public ClassFilterType getHiddenClasses()
ClassFilterType
public void setHiddenClasses(ClassFilterType value)
value
- allowed object is
ClassFilterType
public ClassFilterType getNonOverridableClasses()
ClassFilterType
public void setNonOverridableClasses(ClassFilterType value)
value
- allowed object is
ClassFilterType
public ClassFilterType getPrivateClasses()
ClassFilterType
public void setPrivateClasses(ClassFilterType value)
value
- allowed object is
ClassFilterType
public boolean isInverseClassloading()
boolean
public void setInverseClassloading(boolean value)
value
- allowed object is
boolean
public boolean isSuppressDefaultEnvironment()
boolean
public void setSuppressDefaultEnvironment(boolean value)
value
- allowed object is
boolean