Package org.jboss.metadata.ejb.spec

Examples of org.jboss.metadata.ejb.spec.ActivationConfigPropertyMetaData


/* 310 */     super.initializePool();
/*     */   }
/*     */
/*     */   protected String getProviderAdapterJNDI()
/*     */   {
/* 315 */     ActivationConfigPropertyMetaData property = (ActivationConfigPropertyMetaData)getActivationConfigProperties().get("providerAdapterJNDI");
/* 316 */     if (property != null)
/* 317 */       return property.getValue();
/* 318 */     return "java:/DefaultJMSProvider";
/*     */   }
View Full Code Here


/* 318 */     return "java:/DefaultJMSProvider";
/*     */   }
/*     */
/*     */   protected String getMaxSession()
/*     */   {
/* 323 */     ActivationConfigPropertyMetaData property = (ActivationConfigPropertyMetaData)getActivationConfigProperties().get("maxSession");
/* 324 */     if (property != null)
/* 325 */       return property.getValue();
/* 326 */     return null;
/*     */   }
View Full Code Here

/* 326 */     return null;
/*     */   }
/*     */
/*     */   protected String getDestination()
/*     */   {
/* 331 */     ActivationConfigPropertyMetaData property = (ActivationConfigPropertyMetaData)getActivationConfigProperties().get("destination");
/* 332 */     if (property != null)
/* 333 */       return property.getValue();
/* 334 */     return null;
/*     */   }
View Full Code Here

/* 334 */     return null;
/*     */   }
/*     */
/*     */   protected String getDestinationType()
/*     */   {
/* 339 */     ActivationConfigPropertyMetaData property = (ActivationConfigPropertyMetaData)getActivationConfigProperties().get("destinationType");
/* 340 */     if (property != null)
/* 341 */       return property.getValue();
/* 342 */     return null;
/*     */   }
View Full Code Here

  
   protected void addActivationSpecProperty(Map<String, ActivationConfigPropertyMetaData> result, ActivationConfigProperty property)
   {
      if (!property.propertyName().equals("messagingType"))
      {
         ActivationConfigPropertyMetaData metaData = new ActivationConfigPropertyMetaData();
         metaData.setName(property.propertyName());
         metaData.setValue(property.propertyValue());  
         result.put(property.propertyName(), metaData);
      }
   }
View Full Code Here

     super.initializePool();
   }
  
   protected String getProviderAdapterJNDI()
   {
      ActivationConfigPropertyMetaData property = (ActivationConfigPropertyMetaData)getActivationConfigProperties().get(PROVIDER_ADAPTER_JNDI);
      if (property != null)
         return property.getValue();
      return "java:/DefaultJMSProvider";
   }
View Full Code Here

      return "java:/DefaultJMSProvider";
   }
  
   protected String getMaxSession()
   {
      ActivationConfigPropertyMetaData property = (ActivationConfigPropertyMetaData)getActivationConfigProperties().get(MAX_SESSION);
      if (property != null)
         return property.getValue();
      return null;
   }
View Full Code Here

      return null;
   }
  
   protected String getDestination()
   {
      ActivationConfigPropertyMetaData property = (ActivationConfigPropertyMetaData)getActivationConfigProperties().get(DESTINATION);
      if (property != null)
         return property.getValue();
      return null;
   }
View Full Code Here

      return null;
   }
  
   protected String getDestinationType()
   {
      ActivationConfigPropertyMetaData property = (ActivationConfigPropertyMetaData)getActivationConfigProperties().get(DESTINATION_TYPE);
      if (property != null)
         return property.getValue();
      return null;
   }
View Full Code Here

  
   protected void addActivationSpecProperty(Map<String, ActivationConfigPropertyMetaData> result, ActivationConfigProperty property)
   {
      if (!property.propertyName().equals("messagingType"))
      {
         ActivationConfigPropertyMetaData metaData = new ActivationConfigPropertyMetaData();
         metaData.setName(property.propertyName());
         metaData.setValue(property.propertyValue());  
         result.put(property.propertyName(), metaData);
      }
   }
View Full Code Here

TOP

Related Classes of org.jboss.metadata.ejb.spec.ActivationConfigPropertyMetaData

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.