org.mobicents.metadata.sip.spec.SipSecurityConstraintMetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-as7-restcomm Show documentation
Show all versions of jboss-as7-restcomm Show documentation
>JBoss Application Server: Restcomm Sip Servlets Adaptation Layer
/*
* TeleStax, Open Source Cloud Communications Copyright 2012.
* and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.mobicents.metadata.sip.spec;
import java.util.Collections;
import java.util.List;
import org.jboss.metadata.javaee.spec.EmptyMetaData;
import org.jboss.metadata.javaee.support.IdMetaDataImpl;
import org.jboss.metadata.web.spec.AuthConstraintMetaData;
import org.jboss.metadata.web.spec.TransportGuaranteeType;
import org.jboss.metadata.web.spec.UserDataConstraintMetaData;
/**
* The sip app security-constraints
*
* @author [email protected]
* @version $Revision$
*/
public class SipSecurityConstraintMetaData extends IdMetaDataImpl {
private static final long serialVersionUID = 1;
private String displayName;
private SipResourceCollectionsMetaData resourceCollections;
private EmptyMetaData proxyAuthentication;
private AuthConstraintMetaData authConstraint;
private UserDataConstraintMetaData userDataConstraint;
public AuthConstraintMetaData getAuthConstraint() {
return authConstraint;
}
public void setAuthConstraint(AuthConstraintMetaData authConstraint) {
this.authConstraint = authConstraint;
}
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public SipResourceCollectionsMetaData getResourceCollections() {
return resourceCollections;
}
public void setResourceCollections(SipResourceCollectionsMetaData resourceCollections) {
this.resourceCollections = resourceCollections;
}
public UserDataConstraintMetaData getUserDataConstraint() {
return userDataConstraint;
}
public void setUserDataConstraint(UserDataConstraintMetaData userDataConstraint) {
this.userDataConstraint = userDataConstraint;
}
/**
* The unchecked flag is set when there is no security-constraint/auth-constraint
*
* @return true if there is no auth-constraint
*/
// @XmlTransient
public boolean isUnchecked() {
return authConstraint == null;
}
/**
* The excluded flag is set when there is an empty security-constraint/auth-constraint element
*
* @return true if there is an empty auth-constraint
*/
// @XmlTransient
public boolean isExcluded() {
boolean isExcluded = authConstraint != null && authConstraint.getRoleNames() == null;
return isExcluded;
}
/**
* Accessor for the security-constraint/auth-constraint/role-name(s)
*
* @return A possibly empty set of constraint role names. Use isUnchecked and isExcluded to check for no or an emtpy
* auth-constraint
*/
// @XmlTransient
public List getRoleNames() {
List roleNames = Collections.emptyList();
if (authConstraint != null && authConstraint.getRoleNames() != null)
roleNames = authConstraint.getRoleNames();
return roleNames;
}
/**
* Accessor for the UserDataConstraint.TransportGuarantee
*
* @return UserDataConstraint.TransportGuarantee
*/
// @XmlTransient
public TransportGuaranteeType getTransportGuarantee() {
TransportGuaranteeType type = TransportGuaranteeType.NONE;
if (userDataConstraint != null)
type = userDataConstraint.getTransportGuarantee();
return type;
}
/**
* @param proxyAuthentication the proxyAuthentication to set
*/
public void setProxyAuthentication(EmptyMetaData proxyAuthentication) {
this.proxyAuthentication = proxyAuthentication;
}
/**
* @return the proxyAuthentication
*/
// @XmlTransient
public EmptyMetaData getProxyAuthentication() {
return proxyAuthentication;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy