All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mobicents.metadata.sip.spec.SipMetaData Maven / Gradle / Ivy

There is a newer version: 4.0.128
Show newest version
/*
 * TeleStax, Open Source Cloud Communications
 * Copyright 2011-2015, Telestax Inc and individual contributors
 * by the @authors tag.
 *
 * This program is free software: you can redistribute it and/or modify
 * under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation; either version 3 of
 * the License, or (at your option) any later version.
 *
 * This program 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 Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see 
 */
package org.mobicents.metadata.sip.spec;

import java.util.List;

import org.jboss.as.server.deployment.AttachmentKey;
import org.jboss.metadata.javaee.spec.Environment;
import org.jboss.metadata.web.spec.WebMetaData;
import org.mobicents.servlet.sip.annotation.ConcurrencyControlMode;

/**
 * The sip-app spec metadata. This class is based on the CR12 Tag of the WebMetaData class
 *
 * @author [email protected]
 *
 *         This class is based on the contents of org.mobicents.metadata.sip.spec package from jboss-as7-mobicents project,
 *         re-implemented for jboss as10 (wildfly) by:
 * @author [email protected]
 */
// public abstract class SipMetaData extends IdMetaDataImplWithDescriptionGroup implements Environment {
public abstract class SipMetaData extends WebMetaData implements Environment {
    private static final long serialVersionUID = 1;

    public static final AttachmentKey ATTACHMENT_KEY = AttachmentKey.create(SipMetaData.class);

    // private String dtdPublicId;
    // private String dtdSystemId;
    // private String version;
    private String applicationName;
    // private EmptyMetaData distributable;
    // private List listeners;
    // private List contextParams;
    private SipServletSelectionMetaData servletSelection;
    private ProxyConfigMetaData proxyConfig;
    private SipServletsMetaData sipServlets;
    // private SessionConfigMetaData sessionConfig;
    private List sipSecurityConstraints;
    private SipLoginConfigMetaData sipLoginConfig;
    // private SecurityRolesMetaData securityRoles;
    // private LocaleEncodingsMetaData localEncodings;

    // /** The environment */
    // private EnvironmentRefsGroupMetaData jndiEnvironmentRefsGroup;

    // /** The message destinations */
    // private MessageDestinationsMetaData messageDestinations;

    // AS7 isolated class loading does not allow to fetch Method,
    // so processors fill SipApplicationKeyMethodInfo and Method is fetched afterwards
    // private Method sipApplicationKeyMethod;
    private SipApplicationKeyMethodInfo sipApplicationKeyMethodInfo;
    private ConcurrencyControlMode concurrencyControlMode;

    /**
     * Callback for the DTD information
     *
     * @param root
     * @param publicId
     * @param systemId
     */
    // public void setDTD(String root, String publicId, String systemId) {
    // this.dtdPublicId = publicId;
    // this.dtdSystemId = systemId;
    // }

    /**
     * Get the DTD public id if one was seen
     *
     * @return the value of the web.xml dtd public id
     */
    // public String getDtdPublicId() {
    // return dtdPublicId;
    // }

    /**
     * Get the DTD system id if one was seen
     *
     * @return the value of the web.xml dtd system id
     */
    // public String getDtdSystemId() {
    // return dtdSystemId;
    // }

    // public String getVersion() {
    // return version;
    // }

    // public void setVersion(String version) {
    // this.version = version;
    // }

    /**
     * Is this a servlet 2.3 version application
     *
     * @return true if this is a javaee 2.3 version application
     */
    // public boolean is10() {
    // return dtdPublicId != null && dtdPublicId.equals("-//Java Community Process//DTD SIP Application 1.0//EN");
    // }

    // public boolean is11() {
    // return version != null && version.equals("1.1");
    // }

    // public EmptyMetaData getDistributable() {
    // return distributable;
    // }

    // public void setDistributable(EmptyMetaData distributable) {
    // this.distributable = distributable;
    // }

    // public SessionConfigMetaData getSipSessionConfig() {
    // return sipSessionConfig;
    // }

    // public void setSessionConfig(SessionConfigMetaData sessionConfig) {
    // this.sessionConfig = sessionConfig;
    // }

    // public List getContextParams() {
    // return contextParams;
    // }

    // public void setContextParams(List params) {
    // this.contextParams = params;
    // }

    // public List getListeners() {
    // return listeners;
    // }

    // public void setListeners(List listeners) {
    // this.listeners = listeners;
    // }

    // public LocaleEncodingsMetaData getLocalEncodings() {
    // return localEncodings;
    // }

    // public void setLocalEncodings(LocaleEncodingsMetaData localEncodings) {
    // this.localEncodings = localEncodings;
    // }

    public SipLoginConfigMetaData getSipLoginConfig() {
        return sipLoginConfig;
    }

    public void setSipLoginConfig(SipLoginConfigMetaData sipLoginConfig) {
        this.sipLoginConfig = sipLoginConfig;
    }

    public List getSipSecurityConstraints() {
        return sipSecurityConstraints;
    }

    public void setSipSecurityConstraints(List sipSecurityConstraints) {
        this.sipSecurityConstraints = sipSecurityConstraints;
    }

    // public SecurityRolesMetaData getSecurityRoles() {
    // return securityRoles;
    // }

    // public void setSecurityRoles(SecurityRolesMetaData securityRoles) {
    // this.securityRoles = securityRoles;
    // }

    public SipServletsMetaData getSipServlets() {
        return sipServlets;
    }

    public void setSipServlets(SipServletsMetaData sipServlets) {
        this.sipServlets = sipServlets;
    }

    /**
     * Get the jndiEnvironmentRefsGroup.
     *
     * @return the jndiEnvironmentRefsGroup.
     */
    // public EnvironmentRefsGroupMetaData getJndiEnvironmentRefsGroup() {
    // return jndiEnvironmentRefsGroup;
    // }

    /**
     * Set the jndiEnvironmentRefsGroup.
     *
     * @param jndiEnvironmentRefsGroup the jndiEnvironmentRefsGroup.
     * @throws IllegalArgumentException for a null jndiEnvironmentRefsGroup
     */
    // public void setJndiEnvironmentRefsGroup(EnvironmentRefsGroupMetaData env) {
    // if (env == null)
    // throw new IllegalArgumentException("Null jndiEnvironmentRefsGroup");
    // if (jndiEnvironmentRefsGroup != null)
    // // FIXME: josemrecio - merge
    // //jndiEnvironmentRefsGroup.merge(env, null, "jboss-web.xml", "sip.xml", false);
    // throw new IllegalArgumentException("FIXME merge - jndiEnvironmentRefsGroup not null, merge not supported");
    // else
    // this.jndiEnvironmentRefsGroup = env;
    // }

    // public EJBLocalReferenceMetaData getEjbLocalReferenceByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getEjbLocalReferences());
    // }

    // public EJBLocalReferencesMetaData getEjbLocalReferences() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getEjbLocalReferences();
    // return null;
    // }

    // public EJBReferenceMetaData getEjbReferenceByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getEjbReferences());
    // }

    // public EJBReferencesMetaData getEjbReferences() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getEjbReferences();
    // return null;
    // }

    // // TODO: josemrecio - annotation
    // public AnnotatedEJBReferencesMetaData getAnnotatedEjbReferences() {
    // AnnotatedEJBReferencesMetaData refs = null;
    // if (jndiEnvironmentRefsGroup != null)
    // refs = jndiEnvironmentRefsGroup.getAnnotatedEjbReferences();
    // return refs;
    // }

    // public EnvironmentEntriesMetaData getEnvironmentEntries() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getEnvironmentEntries();
    // return null;
    // }

    // public EnvironmentEntryMetaData getEnvironmentEntryByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getEnvironmentEntries());
    // }

    // public MessageDestinationReferenceMetaData getMessageDestinationReferenceByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getMessageDestinationReferences());
    // }

    // public MessageDestinationReferencesMetaData getMessageDestinationReferences() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getMessageDestinationReferences();
    // return null;
    // }

    // public PersistenceContextReferenceMetaData getPersistenceContextReferenceByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getPersistenceContextRefs());
    // }

    // public PersistenceContextReferencesMetaData getPersistenceContextRefs() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getPersistenceContextRefs();
    // return null;
    // }

    // public PersistenceUnitReferenceMetaData getPersistenceUnitReferenceByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getPersistenceUnitRefs());
    // }

    // public PersistenceUnitReferencesMetaData getPersistenceUnitRefs() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getPersistenceUnitRefs();
    // return null;
    // }

    // public LifecycleCallbacksMetaData getPostConstructs() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getPostConstructs();
    // return null;
    // }

    // public LifecycleCallbacksMetaData getPreDestroys() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getPreDestroys();
    // return null;
    // }

    // public ResourceEnvironmentReferenceMetaData getResourceEnvironmentReferenceByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getResourceEnvironmentReferences());
    // }

    // public ResourceEnvironmentReferencesMetaData getResourceEnvironmentReferences() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getResourceEnvironmentReferences();
    // return null;
    // }

    // public ResourceReferenceMetaData getResourceReferenceByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getResourceReferences());
    // }

    // public ResourceReferencesMetaData getResourceReferences() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getResourceReferences();
    // return null;
    // }

    // public ServiceReferenceMetaData getServiceReferenceByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getServiceReferences());
    // }

    // public ServiceReferencesMetaData getServiceReferences() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getServiceReferences();
    // return null;
    // }

    // public MessageDestinationsMetaData getMessageDestinations() {
    // return messageDestinations;
    // }

    // public void setMessageDestinations(MessageDestinationsMetaData messageDestinations) {
    // this.messageDestinations = messageDestinations;
    // }

    /**
     * @param servletSelection the servletSelection to set
     */
    public void setServletSelection(SipServletSelectionMetaData servletSelection) {
        this.servletSelection = servletSelection;
    }

    /**
     * @return the servletSelection
     */
    public SipServletSelectionMetaData getServletSelection() {
        return servletSelection;
    }

    /**
     * @param proxyConfig the proxyConfig to set
     */
    public void setProxyConfig(ProxyConfigMetaData proxyConfig) {
        this.proxyConfig = proxyConfig;
    }

    /**
     * @return the proxyConfig
     */
    public ProxyConfigMetaData getProxyConfig() {
        return proxyConfig;
    }

    /**
     * @param applicationName the applicationName to set
     */
    public void setApplicationName(String applicationName) {
        this.applicationName = applicationName;
    }

    /**
     * @return the applicationName
     */
    public String getApplicationName() {
        return applicationName;
    }

    // /**
    // * @param sipApplicationKeyMethod the sipApplicationKeyMethod to set
    // */
    // public void setSipApplicationKeyMethod(Method sipApplicationKeyMethod) {
    // this.sipApplicationKeyMethod = sipApplicationKeyMethod;
    // }
    //
    // /**
    // * @return the sipApplicationKeyMethod
    // */
    // public Method getSipApplicationKeyMethod() {
    // return sipApplicationKeyMethod;
    // }

    /**
     * @param sipApplicationKeyMethodInfo the sipApplicationKeyMethodInfo to set
     */
    public void setSipApplicationKeyMethodInfo(SipApplicationKeyMethodInfo sipApplicationKeyMethodInfo) {
        this.sipApplicationKeyMethodInfo = sipApplicationKeyMethodInfo;
    }

    /**
     * @return the sipApplicationKeyMethodInfo
     */
    public SipApplicationKeyMethodInfo getSipApplicationKeyMethodInfo() {
        return this.sipApplicationKeyMethodInfo;
    }

    public ConcurrencyControlMode getConcurrencyControlMode() {
        return concurrencyControlMode;
    }

    public void setConcurrencyControlMode(ConcurrencyControlMode mode) {
        this.concurrencyControlMode = mode;
    }

    // public DataSourceMetaData getDataSourceByName(String name) {
    // return AbstractMappedMetaData.getByName(name, getDataSources());
    // }

    // public DataSourcesMetaData getDataSources() {
    // if (jndiEnvironmentRefsGroup != null)
    // return jndiEnvironmentRefsGroup.getDataSources();
    // return null;
    // }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy