Codota Logo
DatasourceTypeImpl
Code IndexAdd Codota to your IDE (free)

How to use
DatasourceTypeImpl
in
org.jboss.jca.embedded.dsl.datasources13.impl

Best Java code snippets using org.jboss.jca.embedded.dsl.datasources13.impl.DatasourceTypeImpl (Showing top 14 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ArrayList a =
  • Codota Iconnew ArrayList<String>()
  • Codota Iconnew ArrayList()
  • Codota Iconnew ArrayList<Object>()
  • Smart code suggestions by Codota
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Creates a new <code>datasource</code> element 
* @return the new created instance of <code>DatasourceType<DatasourcesType<T>></code> 
*/
public DatasourceType<DatasourcesType<T>> createDatasource()
{
 return new DatasourceTypeImpl<DatasourcesType<T>>(this, "datasource", childNode);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

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

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

/**
* Creates a new <code>datasource</code> element 
* @return the new created instance of <code>DatasourceType<DatasourcesDescriptor></code> 
*/
public DatasourceType<DatasourcesDescriptor> createDatasource()
{
 return new DatasourceTypeImpl<DatasourcesDescriptor>(this, "datasource", model);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Creates a new <code>datasource</code> element 
* @return the new created instance of <code>DatasourceType<DatasourcesType<T>></code> 
*/
public DatasourceType<DatasourcesType<T>> createDatasource()
{
 return new DatasourceTypeImpl<DatasourcesType<T>>(this, "datasource", childNode);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Creates a new <code>datasource</code> element 
* @return the new created instance of <code>DatasourceType<DatasourcesDescriptor></code> 
*/
public DatasourceType<DatasourcesDescriptor> createDatasource()
{
 return new DatasourceTypeImpl<DatasourcesDescriptor>(this, "datasource", model);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Returns all <code>datasource</code> elements
* @return list of <code>datasource</code> 
*/
public List<DatasourceType<DatasourcesDescriptor>> getAllDatasource()
{
 List<DatasourceType<DatasourcesDescriptor>> list = new ArrayList<DatasourceType<DatasourcesDescriptor>>();
 List<Node> nodeList = model.get("datasource");
 for(Node node: nodeList)
 {
   DatasourceType<DatasourcesDescriptor>  type = new DatasourceTypeImpl<DatasourcesDescriptor>(this, "datasource", model, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Returns all <code>datasource</code> elements
* @return list of <code>datasource</code> 
*/
public List<DatasourceType<DatasourcesDescriptor>> getAllDatasource()
{
 List<DatasourceType<DatasourcesDescriptor>> list = new ArrayList<DatasourceType<DatasourcesDescriptor>>();
 List<Node> nodeList = model.get("datasource");
 for(Node node: nodeList)
 {
   DatasourceType<DatasourcesDescriptor>  type = new DatasourceTypeImpl<DatasourcesDescriptor>(this, "datasource", model, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

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

/**
* Returns all <code>datasource</code> elements
* @return list of <code>datasource</code> 
*/
public List<DatasourceType<DatasourcesType<T>>> getAllDatasource()
{
 List<DatasourceType<DatasourcesType<T>>> list = new ArrayList<DatasourceType<DatasourcesType<T>>>();
 List<Node> nodeList = childNode.get("datasource");
 for(Node node: nodeList)
 {
   DatasourceType<DatasourcesType<T>>  type = new DatasourceTypeImpl<DatasourcesType<T>>(this, "datasource", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* If not already created, a new <code>datasource</code> element will be created and returned.
* Otherwise, the first existing <code>datasource</code> element will be returned.
* @return the instance defined for the element <code>datasource</code> 
*/
public DatasourceType<DatasourcesDescriptor> getOrCreateDatasource()
{
 List<Node> nodeList = model.get("datasource");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new DatasourceTypeImpl<DatasourcesDescriptor>(this, "datasource", model, nodeList.get(0));
 }
 return createDatasource();
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

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

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

/**
* If not already created, a new <code>datasource</code> element will be created and returned.
* Otherwise, the first existing <code>datasource</code> element will be returned.
* @return the instance defined for the element <code>datasource</code> 
*/
public DatasourceType<DatasourcesDescriptor> getOrCreateDatasource()
{
 List<Node> nodeList = model.get("datasource");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new DatasourceTypeImpl<DatasourcesDescriptor>(this, "datasource", model, nodeList.get(0));
 }
 return createDatasource();
}
org.jboss.jca.embedded.dsl.datasources13.implDatasourceTypeImpl

Javadoc

This class implements the datasourceType xsd type

Most used methods

  • <init>
  • createConnectionProperty
    Creates a new connection-property element

Popular in Java

  • Reactive rest calls using spring rest template
  • setScale (BigDecimal)
  • onRequestPermissionsResult (Fragment)
  • getExternalFilesDir (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Point (java.awt)
    A point representing a location in (x, y) coordinate space, specified in integer precision.
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Pattern (java.util.regex)
    A compiled representation of a regular expression. A regular expression, specified as a string, must
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now