Package org.jboss.resource.metadata

Examples of org.jboss.resource.metadata.RequiredConfigPropertyMetaData


      {
         return null;
      }
      else if (localName.equals("required-config-property"))
      {
         RequiredConfigPropertyMetaData rcpmd = new RequiredConfigPropertyMetaData();
         mlmd.addRequiredConfigProperty(rcpmd);
         return rcpmd;
      }
     
      throw new IllegalArgumentException("Unknown message listener newChild: nuri=" +namespaceURI + " localName=" + localName + " attrs=" + attrs);
View Full Code Here


            " activationConfig=" + activationConfig + " messageListner=" + mlmd);
     
      // Check we have all the required properties
      for (Iterator i = mlmd.getRequiredConfigProperties().iterator(); i.hasNext();)
      {
         RequiredConfigPropertyMetaData rcpmd = (RequiredConfigPropertyMetaData) i.next();

         String rcp = rcpmd.getName();
         String rcpName = rcp.substring(0, 1).toUpperCase();
         if (rcp.length() > 1)
            rcpName = rcpName.concat(rcp.substring(1));
         if (trace)
            log.trace("Checking required config " + rcpName);
View Full Code Here

/*     */     {
/* 574 */       return null;
/*     */     }
/* 576 */     if (localName.equals("required-config-property"))
/*     */     {
/* 578 */       RequiredConfigPropertyMetaData rcpmd = new RequiredConfigPropertyMetaData();
/* 579 */       mlmd.addRequiredConfigProperty(rcpmd);
/* 580 */       return rcpmd;
/*     */     }
/*     */
/* 583 */     throw new IllegalArgumentException("Unknown message listener newChild: nuri=" + namespaceURI + " localName=" + localName + " attrs=" + attrs);
View Full Code Here

/*  58 */       log.trace("Create ActivationSpec rar=" + rarName + " messagingType=" + messagingType + " activationConfig=" + activationConfig + " messageListner=" + mlmd);
/*     */     }
/*     */
/*  62 */     for (Iterator i = mlmd.getRequiredConfigProperties().iterator(); i.hasNext(); )
/*     */     {
/*  64 */       RequiredConfigPropertyMetaData rcpmd = (RequiredConfigPropertyMetaData)i.next();
/*     */
/*  66 */       String rcp = rcpmd.getName();
/*  67 */       String rcpName = rcp.substring(0, 1).toUpperCase();
/*  68 */       if (rcp.length() > 1)
/*  69 */         rcpName = rcpName.concat(rcp.substring(1));
/*  70 */       if (trace) {
/*  71 */         log.trace("Checking required config " + rcpName);
View Full Code Here

TOP

Related Classes of org.jboss.resource.metadata.RequiredConfigPropertyMetaData

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.