Package com.sun.enterprise.deployment

Examples of com.sun.enterprise.deployment.OrderedSet


        initParameters.put(parameter.getName(), parameter);
    } */

    private Set getInitializationParameterSet() {
  if (this.initializationParameters == null) {
      this.initializationParameters = new OrderedSet();
  }
  return this.initializationParameters =
                new OrderedSet(this.initializationParameters);
    }
View Full Code Here


    }
   
    /** Security Role references */
    Set getSecurityRoleReferenceSet() {
  if (this.securityRoleReferences == null) {
      this.securityRoleReferences = new OrderedSet();
  }
  return this.securityRoleReferences = new OrderedSet(this.securityRoleReferences);
    }
View Full Code Here

    /**
    * Returns the Set of my COntext Parameters.
    */
    public Set getContextParametersSet() {
        if (this.contextParameters == null) {
            this.contextParameters = new OrderedSet();
        }

        return this.contextParameters = new OrderedSet(this.contextParameters);
    }
View Full Code Here

    /**
     * Returns my Set of references to resources.
     */
    public Set getResourceReferenceDescriptors() {
        if (this.resourceReferences == null) {
            this.resourceReferences = new OrderedSet();
        }

        return this.resourceReferences = new OrderedSet(this.resourceReferences);
    }
View Full Code Here

    /**
            * Return the set of JMS destination references this ejb declares.
            */
    public Set getJmsDestinationReferenceDescriptors() {
        if (this.jmsDestReferences == null) {
            this.jmsDestReferences = new OrderedSet();
        }

        return this.jmsDestReferences = new OrderedSet(this.jmsDestReferences);
    }
View Full Code Here

    /**
     * @param environmentEntry
     */
    public void addEnvironmentProperty(EnvironmentProperty environmentProperty) {
        if (environmentEntries == null) {
            environmentEntries = new OrderedSet();
        }

        environmentEntries.add(environmentProperty);
    }
View Full Code Here

    /**
     * @param ejbReference
     */
    public void addEjbReferenceDescriptor(EjbReference ejbReference) {
        if (ejbReferences == null) {
            ejbReferences = new OrderedSet();
        }

        ejbReference.setReferringBundleDescriptor(this);
        ejbReferences.add(ejbReference);
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.deployment.OrderedSet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.