Interface SecurityType<T>
-
- All Superinterfaces:
org.jboss.shrinkwrap.descriptor.api.Child<T>
- All Known Implementing Classes:
SecurityTypeImpl
public interface SecurityType<T> extends org.jboss.shrinkwrap.descriptor.api.Child<T>This interface defines the contract for thesecurityTypexsd type
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SecurityType<T>application()Sets theapplicationelementStringgetSecurityDomain()Returns thesecurity-domainelementStringgetSecurityDomainAndApplication()Returns thesecurity-domain-and-applicationelementBooleanisApplication()Removes theapplicationelementSecurityType<T>removeApplication()Removes theapplicationelementSecurityType<T>removeSecurityDomain()Removes thesecurity-domainelementSecurityType<T>removeSecurityDomainAndApplication()Removes thesecurity-domain-and-applicationelementSecurityType<T>securityDomain(String securityDomain)Sets thesecurity-domainelementSecurityType<T>securityDomainAndApplication(String securityDomainAndApplication)Sets thesecurity-domain-and-applicationelement
-
-
-
Method Detail
-
application
SecurityType<T> application()
Sets theapplicationelement- Returns:
- the current instance of
SecurityType
-
isApplication
Boolean isApplication()
Removes theapplicationelement- Returns:
- the current instance of
SecurityType
-
removeApplication
SecurityType<T> removeApplication()
Removes theapplicationelement- Returns:
- the current instance of
SecurityType
-
securityDomain
SecurityType<T> securityDomain(String securityDomain)
Sets thesecurity-domainelement- Parameters:
securityDomain- the value for the elementsecurity-domain- Returns:
- the current instance of
SecurityType
-
getSecurityDomain
String getSecurityDomain()
Returns thesecurity-domainelement- Returns:
- the node defined for the element
security-domain
-
removeSecurityDomain
SecurityType<T> removeSecurityDomain()
Removes thesecurity-domainelement- Returns:
- the current instance of
SecurityType
-
securityDomainAndApplication
SecurityType<T> securityDomainAndApplication(String securityDomainAndApplication)
Sets thesecurity-domain-and-applicationelement- Parameters:
securityDomainAndApplication- the value for the elementsecurity-domain-and-application- Returns:
- the current instance of
SecurityType
-
getSecurityDomainAndApplication
String getSecurityDomainAndApplication()
Returns thesecurity-domain-and-applicationelement- Returns:
- the node defined for the element
security-domain-and-application
-
removeSecurityDomainAndApplication
SecurityType<T> removeSecurityDomainAndApplication()
Removes thesecurity-domain-and-applicationelement- Returns:
- the current instance of
SecurityType
-
-