Examples of ConfigPropertyMetaData


Examples of org.jboss.resource.metadata.ConfigPropertyMetaData

/*     */   protected void setMcfProperties(Collection properties, boolean mustExist)
/*     */     throws DeploymentException
/*     */   {
/* 446 */     for (Iterator i = properties.iterator(); i.hasNext(); )
/*     */     {
/* 448 */       ConfigPropertyMetaData cpmd = (ConfigPropertyMetaData)i.next();
/* 449 */       String name = cpmd.getName();
/* 450 */       String type = cpmd.getType();
/* 451 */       String value = cpmd.getValue();
/* 452 */       if ((name == null) || (name.length() == 0) || (value == null) || (value.length() == 0))
/*     */       {
/* 454 */         this.log.debug("Not setting config property '" + name + "'");
/* 455 */         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.