congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
ConfigPropertyTypeImpl.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.jboss.jca.embedded.dsl.resourceadapters11.impl.ConfigPropertyTypeImpl
constructor

Best Java code snippets using org.jboss.jca.embedded.dsl.resourceadapters11.impl.ConfigPropertyTypeImpl.<init> (Showing top 20 results out of 315)

origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Creates a new <code>config-property</code> element 
* @return the new created instance of <code>ConfigPropertyType<ResourceAdapterType<T>></code> 
*/
public ConfigPropertyType<ResourceAdapterType<T>> createConfigProperty()
{
 return new ConfigPropertyTypeImpl<ResourceAdapterType<T>>(this, "config-property", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Creates a new <code>config-property</code> element 
* @return the new created instance of <code>ConfigPropertyType<ConnectionDefinitionType<T>></code> 
*/
public ConfigPropertyType<ConnectionDefinitionType<T>> createConfigProperty()
{
 return new ConfigPropertyTypeImpl<ConnectionDefinitionType<T>>(this, "config-property", childNode);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Creates a new <code>config-property</code> element 
* @return the new created instance of <code>ConfigPropertyType<ConnectionDefinitionType<T>></code> 
*/
public ConfigPropertyType<ConnectionDefinitionType<T>> createConfigProperty()
{
 return new ConfigPropertyTypeImpl<ConnectionDefinitionType<T>>(this, "config-property", childNode);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Creates a new <code>config-property</code> element 
* @return the new created instance of <code>ConfigPropertyType<AdminObjectType<T>></code> 
*/
public ConfigPropertyType<AdminObjectType<T>> createConfigProperty()
{
 return new ConfigPropertyTypeImpl<AdminObjectType<T>>(this, "config-property", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Creates a new <code>config-property</code> element 
* @return the new created instance of <code>ConfigPropertyType<AdminObjectType<T>></code> 
*/
public ConfigPropertyType<AdminObjectType<T>> createConfigProperty()
{
 return new ConfigPropertyTypeImpl<AdminObjectType<T>>(this, "config-property", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Creates a new <code>config-property</code> element 
* @return the new created instance of <code>ConfigPropertyType<ResourceAdapterType<T>></code> 
*/
public ConfigPropertyType<ResourceAdapterType<T>> createConfigProperty()
{
 return new ConfigPropertyTypeImpl<ResourceAdapterType<T>>(this, "config-property", childNode);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element with the given value will be created.
* Otherwise, the existing <code>config-property</code> element will be returned.
* @return  a new or existing instance of <code>ConfigPropertyType<ExtensionType<T>></code> 
*/
public ConfigPropertyType<ExtensionType<T>> getOrCreateConfigProperty()
{
 Node node = childNode.getOrCreate("config-property");
 ConfigPropertyType<ExtensionType<T>> configProperty = new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode, node);
 return configProperty;
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element with the given value will be created.
* Otherwise, the existing <code>config-property</code> element will be returned.
* @return  a new or existing instance of <code>ConfigPropertyType<ExtensionType<T>></code> 
*/
public ConfigPropertyType<ExtensionType<T>> getOrCreateConfigProperty()
{
 Node node = childNode.getOrCreate("config-property");
 ConfigPropertyType<ExtensionType<T>> configProperty = new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode, node);
 return configProperty;
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Returns all <code>config-property</code> elements
* @return list of <code>config-property</code> 
*/
public List<ConfigPropertyType<ConnectionDefinitionType<T>>> getAllConfigProperty()
{
 List<ConfigPropertyType<ConnectionDefinitionType<T>>> list = new ArrayList<ConfigPropertyType<ConnectionDefinitionType<T>>>();
 List<Node> nodeList = childNode.get("config-property");
 for(Node node: nodeList)
 {
   ConfigPropertyType<ConnectionDefinitionType<T>>  type = new ConfigPropertyTypeImpl<ConnectionDefinitionType<T>>(this, "config-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Returns all <code>config-property</code> elements
* @return list of <code>config-property</code> 
*/
public List<ConfigPropertyType<AdminObjectType<T>>> getAllConfigProperty()
{
 List<ConfigPropertyType<AdminObjectType<T>>> list = new ArrayList<ConfigPropertyType<AdminObjectType<T>>>();
 List<Node> nodeList = childNode.get("config-property");
 for(Node node: nodeList)
 {
   ConfigPropertyType<AdminObjectType<T>>  type = new ConfigPropertyTypeImpl<AdminObjectType<T>>(this, "config-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Returns all <code>config-property</code> elements
* @return list of <code>config-property</code> 
*/
public List<ConfigPropertyType<ResourceAdapterType<T>>> getAllConfigProperty()
{
 List<ConfigPropertyType<ResourceAdapterType<T>>> list = new ArrayList<ConfigPropertyType<ResourceAdapterType<T>>>();
 List<Node> nodeList = childNode.get("config-property");
 for(Node node: nodeList)
 {
   ConfigPropertyType<ResourceAdapterType<T>>  type = new ConfigPropertyTypeImpl<ResourceAdapterType<T>>(this, "config-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Returns all <code>config-property</code> elements
* @return list of <code>config-property</code> 
*/
public List<ConfigPropertyType<ResourceAdapterType<T>>> getAllConfigProperty()
{
 List<ConfigPropertyType<ResourceAdapterType<T>>> list = new ArrayList<ConfigPropertyType<ResourceAdapterType<T>>>();
 List<Node> nodeList = childNode.get("config-property");
 for(Node node: nodeList)
 {
   ConfigPropertyType<ResourceAdapterType<T>>  type = new ConfigPropertyTypeImpl<ResourceAdapterType<T>>(this, "config-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Returns all <code>config-property</code> elements
* @return list of <code>config-property</code> 
*/
public List<ConfigPropertyType<ConnectionDefinitionType<T>>> getAllConfigProperty()
{
 List<ConfigPropertyType<ConnectionDefinitionType<T>>> list = new ArrayList<ConfigPropertyType<ConnectionDefinitionType<T>>>();
 List<Node> nodeList = childNode.get("config-property");
 for(Node node: nodeList)
 {
   ConfigPropertyType<ConnectionDefinitionType<T>>  type = new ConfigPropertyTypeImpl<ConnectionDefinitionType<T>>(this, "config-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Returns all <code>config-property</code> elements
* @return list of <code>config-property</code> 
*/
public List<ConfigPropertyType<AdminObjectType<T>>> getAllConfigProperty()
{
 List<ConfigPropertyType<AdminObjectType<T>>> list = new ArrayList<ConfigPropertyType<AdminObjectType<T>>>();
 List<Node> nodeList = childNode.get("config-property");
 for(Node node: nodeList)
 {
   ConfigPropertyType<AdminObjectType<T>>  type = new ConfigPropertyTypeImpl<AdminObjectType<T>>(this, "config-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<AdminObjectType<T>> getOrCreateConfigProperty()
{
 List<Node> nodeList = childNode.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<AdminObjectType<T>>(this, "config-property", childNode, nodeList.get(0));
 }
 return createConfigProperty();
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<ResourceAdapterType<T>> getOrCreateConfigProperty()
{
 List<Node> nodeList = childNode.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<ResourceAdapterType<T>>(this, "config-property", childNode, nodeList.get(0));
 }
 return createConfigProperty();
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<ConnectionDefinitionType<T>> getOrCreateConfigProperty()
{
 List<Node> nodeList = childNode.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<ConnectionDefinitionType<T>>(this, "config-property", childNode, nodeList.get(0));
 }
 return createConfigProperty();
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<AdminObjectType<T>> getOrCreateConfigProperty()
{
 List<Node> nodeList = childNode.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<AdminObjectType<T>>(this, "config-property", childNode, nodeList.get(0));
 }
 return createConfigProperty();
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<ConnectionDefinitionType<T>> getOrCreateConfigProperty()
{
 List<Node> nodeList = childNode.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<ConnectionDefinitionType<T>>(this, "config-property", childNode, nodeList.get(0));
 }
 return createConfigProperty();
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<ResourceAdapterType<T>> getOrCreateConfigProperty()
{
 List<Node> nodeList = childNode.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<ResourceAdapterType<T>>(this, "config-property", childNode, nodeList.get(0));
 }
 return createConfigProperty();
}
org.jboss.jca.embedded.dsl.resourceadapters11.implConfigPropertyTypeImpl<init>

Popular methods of ConfigPropertyTypeImpl

    Popular in Java

    • Running tasks concurrently on multiple threads
    • compareTo (BigDecimal)
    • findViewById (Activity)
    • scheduleAtFixedRate (Timer)
    • IOException (java.io)
      Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
    • Proxy (java.net)
      This class represents proxy server settings. A created instance of Proxy stores a type and an addres
    • SQLException (java.sql)
      An exception that indicates a failed JDBC operation. It provides the following information about pro
    • Arrays (java.util)
      This class contains various methods for manipulating arrays (such as sorting and searching). This cl
    • TimeZone (java.util)
      TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
    • Timer (java.util)
      Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
    • Top 15 Vim Plugins
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Tabnine for your IDE now