Tabnine Logo
XaDatasourcePropertyTypeImpl
Code IndexAdd Tabnine to your IDE (free)

How to use
XaDatasourcePropertyTypeImpl
in
org.jboss.jca.embedded.dsl.datasources12.impl

Best Java code snippets using org.jboss.jca.embedded.dsl.datasources12.impl.XaDatasourcePropertyTypeImpl (Showing top 6 results out of 315)

origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Creates a new <code>xa-datasource-property</code> element 
* @return the new created instance of <code>XaDatasourcePropertyType<XaDatasourceType<T>></code> 
*/
public XaDatasourcePropertyType<XaDatasourceType<T>> createXaDatasourceProperty()
{
 return new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Creates a new <code>xa-datasource-property</code> element 
* @return the new created instance of <code>XaDatasourcePropertyType<XaDatasourceType<T>></code> 
*/
public XaDatasourcePropertyType<XaDatasourceType<T>> createXaDatasourceProperty()
{
 return new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Returns all <code>xa-datasource-property</code> elements
* @return list of <code>xa-datasource-property</code> 
*/
public List<XaDatasourcePropertyType<XaDatasourceType<T>>> getAllXaDatasourceProperty()
{
 List<XaDatasourcePropertyType<XaDatasourceType<T>>> list = new ArrayList<XaDatasourcePropertyType<XaDatasourceType<T>>>();
 List<Node> nodeList = childNode.get("xa-datasource-property");
 for(Node node: nodeList)
 {
   XaDatasourcePropertyType<XaDatasourceType<T>>  type = new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Returns all <code>xa-datasource-property</code> elements
* @return list of <code>xa-datasource-property</code> 
*/
public List<XaDatasourcePropertyType<XaDatasourceType<T>>> getAllXaDatasourceProperty()
{
 List<XaDatasourcePropertyType<XaDatasourceType<T>>> list = new ArrayList<XaDatasourcePropertyType<XaDatasourceType<T>>>();
 List<Node> nodeList = childNode.get("xa-datasource-property");
 for(Node node: nodeList)
 {
   XaDatasourcePropertyType<XaDatasourceType<T>>  type = new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

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

/**
* If not already created, a new <code>xa-datasource-property</code> element will be created and returned.
* Otherwise, the first existing <code>xa-datasource-property</code> element will be returned.
* @return the instance defined for the element <code>xa-datasource-property</code> 
*/
public XaDatasourcePropertyType<XaDatasourceType<T>> getOrCreateXaDatasourceProperty()
{
 List<Node> nodeList = childNode.get("xa-datasource-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new XaDatasourcePropertyTypeImpl<XaDatasourceType<T>>(this, "xa-datasource-property", childNode, nodeList.get(0));
 }
 return createXaDatasourceProperty();
}
org.jboss.jca.embedded.dsl.datasources12.implXaDatasourcePropertyTypeImpl

Javadoc

This class implements the xa-datasource-propertyType xsd type

Most used methods

  • <init>

Popular in Java

  • Running tasks concurrently on multiple threads
  • findViewById (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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