Package org.apache.openejb.jee
Class Scan
- java.lang.Object
-
- org.apache.openejb.jee.Scan
-
public class Scan extends Object
Classe Java pour anonymous complex type.
Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence maxOccurs="unbounded" minOccurs="0"> <element name="exclude"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded" minOccurs="0"> <element name="if-class-available"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element> <element name="if-class-not-available"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element> <element name="if-system-property"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="value" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element> </choice> <attribute name="name" use="required"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <pattern value="([a-zA-Z_$][a-zA-Z\d_$]*\.)*([a-zA-Z_$][a-zA-Z\d_$]*|\*|\*\*)"/> </restriction> </simpleType> </attribute> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classScan.ExcludeClasse Java pour anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected List<Scan.Exclude>exclude
-
Constructor Summary
Constructors Constructor Description Scan()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Scan.Exclude>getExclude()Gets the value of the exclude property.
-
-
-
Field Detail
-
exclude
protected List<Scan.Exclude> exclude
-
-
Method Detail
-
getExclude
public List<Scan.Exclude> getExclude()
Gets the value of the exclude property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the exclude property.For example, to add a new item, do as follows:
getExclude().add(newItem);Objects of the following type(s) are allowed in the list
Scan.Exclude
-
-