Examples of EnvironmentRefsGroupMetaData


Examples of org.jboss.metadata.javaee.spec.EnvironmentRefsGroupMetaData

/* 600 */     if ((override != null) && (override.ejbClass != null))
/* 601 */       setEjbClass(override.ejbClass);
/* 602 */     else if ((original != null) && (original.ejbClass != null))
/* 603 */       setEjbClass(original.ejbClass);
/* 604 */     if (this.jndiEnvironmentRefsGroup == null)
/* 605 */       this.jndiEnvironmentRefsGroup = new EnvironmentRefsGroupMetaData();
/* 606 */     Environment env1 = override != null ? override.getJndiEnvironmentRefsGroup() : null;
/* 607 */     Environment env2 = original != null ? original.getJndiEnvironmentRefsGroup() : null;
/* 608 */     this.jndiEnvironmentRefsGroup.merge(env1, env2, "", "", false);
/* 609 */     if ((override != null) && (override.securityIdentity != null))
/* 610 */       setSecurityIdentity(override.securityIdentity);
View Full Code Here

Examples of org.jboss.metadata.javaee.spec.EnvironmentRefsGroupMetaData

   public void process(WebMetaData metaData, Class<?> type)
   {
      super.process(metaData, type);

      //
      EnvironmentRefsGroupMetaData env = metaData.getJndiEnvironmentRefsGroup();
      if(env == null)
      {
         env = new EnvironmentRefsGroupMetaData();
         metaData.setJndiEnvironmentRefsGroup(env);  
      }
      super.process(env, type);
     
      // @RunAs, @MultipartConfig, @ServletSecurity
View Full Code Here

Examples of org.jboss.metadata.javaee.spec.EnvironmentRefsGroupMetaData

                default: throw unexpectedAttribute(reader, i);
            }
        }

        DescriptionGroupMetaData descriptionGroup = new DescriptionGroupMetaData();
        EnvironmentRefsGroupMetaData env = new EnvironmentRefsGroupMetaData();
        // Handle elements
        while (reader.hasNext() && reader.nextTag() != END_ELEMENT) {
            if (WebCommonMetaDataParser.parse(reader, wmd)) {
                continue;
            }
View Full Code Here

Examples of org.jboss.metadata.javaee.spec.EnvironmentRefsGroupMetaData

                default: throw unexpectedAttribute(reader, i);
            }
        }

        DescriptionGroupMetaData descriptionGroup = new DescriptionGroupMetaData();
        EnvironmentRefsGroupMetaData env = new EnvironmentRefsGroupMetaData();
        // Handle elements
        while (reader.hasNext() && reader.nextTag() != END_ELEMENT) {
            if (WebCommonMetaDataParser.parse(reader, wmd)) {
                continue;
            }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.