Tabnine Logo
DatasourceTypeImpl.<init>
Code IndexAdd Tabnine to your IDE (free)

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

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

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.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<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.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<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/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<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/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();
}
org.jboss.jca.embedded.dsl.datasources13.implDatasourceTypeImpl<init>

Popular methods of DatasourceTypeImpl

  • createConnectionProperty
    Creates a new connection-property element

Popular in Java

  • Making http requests using okhttp
  • getContentResolver (Context)
  • getSharedPreferences (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • CodeWhisperer alternatives
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