Examples of AdminObjectImpl


Examples of org.jboss.jca.common.metadata.ra.common.AdminObjectImpl

               {
                  //trimming collections
                  configProperty.trimToSize();

                  //building and returning object
                  return new AdminObjectImpl(adminobjectInterface, adminobjectClass, configProperty, id);

               }
               else
               {
                  if (AdminObject.Tag.forName(reader.getLocalName()) == AdminObject.Tag.UNKNOWN)
View Full Code Here

Examples of org.jboss.jca.common.metadata.ra.common.AdminObjectImpl

               {
                  //trimming collections
                  configProperty.trimToSize();

                  //building and returning object
                  return new AdminObjectImpl(adminobjectInterface, adminobjectClass, configProperty, id);

               }
               else
               {
                  if (AdminObject.Tag.forName(reader.getLocalName()) == AdminObject.Tag.UNKNOWN)
View Full Code Here

Examples of org.jboss.jca.common.metadata.ra.common.AdminObjectImpl

               }
            }
            XsdString adminobjectInterface = new XsdString(aoName, null);
            XsdString adminobjectClass = new XsdString(aoClassName, null);

            adminObjs.add(new AdminObjectImpl(adminobjectInterface, adminobjectClass, configProperties, null));
         }
      }

      return adminObjs;
   }
View Full Code Here

Examples of org.jboss.jca.common.metadata.ra.common.AdminObjectImpl

            if (a.adminObjectInterfaces().length > 0)
            {
               aoName = ((Class) Array.get(a.adminObjectInterfaces(), 0)).getName();
            }
            XsdString adminobjectInterface = new XsdString(aoName, null);
            adminObjs.add(new AdminObjectImpl(adminobjectInterface, null, null, null));
         }
      }

      return adminObjs;
   }
View Full Code Here

Examples of org.jboss.jca.common.metadata.ra.common.AdminObjectImpl

            validProperties.trimToSize();

            XsdString adminobjectInterface = new XsdString(aoName, null);
            XsdString adminobjectClass = new XsdString(aoClassName, null);

            adminObjs.add(new AdminObjectImpl(adminobjectInterface, adminobjectClass, validProperties, null));
         }
      }

      return adminObjs;
   }
View Full Code Here

Examples of org.jboss.jca.common.metadata.ra.common.AdminObjectImpl

               {
                  //trimming collections
                  configProperty.trimToSize();

                  //building and returning object
                  return new AdminObjectImpl(adminobjectInterface, adminobjectClass, configProperty, id);

               }
               else
               {
                  if (AdminObject.Tag.forName(reader.getLocalName()) == AdminObject.Tag.UNKNOWN)
View Full Code Here

Examples of org.jboss.jca.common.metadata.ra.common.AdminObjectImpl

            validProperties.trimToSize();

            XsdString adminobjectInterface = new XsdString(aoName, null);
            XsdString adminobjectClass = new XsdString(aoClassName, null);

            adminObjs.add(new AdminObjectImpl(adminobjectInterface, adminobjectClass, validProperties, null));
         }
      }

      return adminObjs;
   }
View Full Code Here

Examples of org.jboss.jca.common.metadata.resourceadapter.AdminObjectImpl

               }
                 
               if (introspected == null)
                  out.println("  Unable to resolve introspected config-property's");

               AdminObjectImpl aoImpl = new AdminObjectImpl(configProperty, aoClassname,
                  "java:jboss/eis/ao/" + poolName, poolName, Defaults.ENABLED, Defaults.USE_JAVA_CONTEXT);
               adminObjects.add(aoImpl);
            }
         }
           
View Full Code Here

Examples of org.jboss.jca.common.metadata.resourceadapter.AdminObjectImpl

      if (adminObjects == null)
      {
         adminObjects = new ArrayList<AdminObject>();
      }
      adminObjects.add(
            new AdminObjectImpl(configProperties, className, jndiName, poolName, enabled, useJavaContext));
      return this;
   }
View Full Code Here

Examples of org.jboss.jca.common.metadata.resourceadapter.AdminObjectImpl

                        aoConfigProperties.put(key, value);
                    }
                }
            }

            org.jboss.jca.common.api.metadata.resourceadapter.AdminObject ao = new AdminObjectImpl(aoConfigProperties, aoClass, jndiName, poolName(aoClass, className), Boolean.TRUE, Boolean.TRUE);

            Activation activation = new ActivationImpl(null, null, TransactionSupportEnum.LocalTransaction, Collections.<ConnectionDefinition>emptyList(), Collections.singletonList(ao),
                    null, Collections.<String>emptyList(), null, null);

            String serviceName = jndiName;
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.