Package org.apache.openejb.jee
Class SecurityConstraint
- java.lang.Object
-
- org.apache.openejb.jee.SecurityConstraint
-
public class SecurityConstraint extends Object
web-common_3_0.xsdJava class for security-constraintType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="security-constraintType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="display-name" type="{http://java.sun.com/xml/ns/javaee}display-nameType" maxOccurs="unbounded" minOccurs="0"/> <element name="web-resource-collection" type="{http://java.sun.com/xml/ns/javaee}web-resource-collectionType" maxOccurs="unbounded"/> <element name="auth-constraint" type="{http://java.sun.com/xml/ns/javaee}auth-constraintType" minOccurs="0"/> <element name="user-data-constraint" type="{http://java.sun.com/xml/ns/javaee}user-data-constraintType" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected AuthConstraintauthConstraintprotected List<String>displayNameprotected Stringidprotected UserDataConstraintuserDataConstraintprotected List<WebResourceCollection>webResourceCollection
-
Constructor Summary
Constructors Constructor Description SecurityConstraint()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthConstraintgetAuthConstraint()List<String>getDisplayName()StringgetId()UserDataConstraintgetUserDataConstraint()List<WebResourceCollection>getWebResourceCollection()voidsetAuthConstraint(AuthConstraint value)voidsetId(String value)voidsetUserDataConstraint(UserDataConstraint value)
-
-
-
Field Detail
-
webResourceCollection
protected List<WebResourceCollection> webResourceCollection
-
authConstraint
protected AuthConstraint authConstraint
-
userDataConstraint
protected UserDataConstraint userDataConstraint
-
id
protected String id
-
-
Method Detail
-
getWebResourceCollection
public List<WebResourceCollection> getWebResourceCollection()
-
getAuthConstraint
public AuthConstraint getAuthConstraint()
-
setAuthConstraint
public void setAuthConstraint(AuthConstraint value)
-
getUserDataConstraint
public UserDataConstraint getUserDataConstraint()
-
setUserDataConstraint
public void setUserDataConstraint(UserDataConstraint value)
-
getId
public String getId()
-
setId
public void setId(String value)
-
-