Codota Logo
org.jboss.jca.embedded.dsl.datasources12.impl
Code IndexAdd Codota to your IDE (free)

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

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

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
BufferedReader b =
  • Codota IconInputStream in;new BufferedReader(new InputStreamReader(in))
  • Codota IconReader in;new BufferedReader(in)
  • Codota IconFile file;new BufferedReader(new FileReader(file))
  • Smart code suggestions by Codota
}
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.jdk8/ironjacamar-embedded

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

/**
* Creates a new <code>driver</code> element 
* @return the new created instance of <code>DriverType<DriversType<T>></code> 
*/
public DriverType<DriversType<T>> createDriver()
{
 return new DriverTypeImpl<DriversType<T>>(this, "driver", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

public DatasourcesDescriptorImpl(String descriptorName, Node node)
{
 super(descriptorName);
 this.model = node;
 addDefaultNamespaces();
}
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

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

/**
* Creates a new <code>connection-property</code> element 
* @return the new created instance of <code>ConnectionPropertyType<DatasourceType<T>></code> 
*/
public ConnectionPropertyType<DatasourceType<T>> createConnectionProperty()
{
 return new ConnectionPropertyTypeImpl<DatasourceType<T>>(this, "connection-property", childNode);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* If not already created, a new <code>timeout</code> element with the given value will be created.
* Otherwise, the existing <code>timeout</code> element will be returned.
* @return  a new or existing instance of <code>TimeoutType<XaDatasourceType<T>></code> 
*/
public TimeoutType<XaDatasourceType<T>> getOrCreateTimeout()
{
 Node node = childNode.getOrCreate("timeout");
 TimeoutType<XaDatasourceType<T>> timeout = new TimeoutTypeImpl<XaDatasourceType<T>>(this, "timeout", childNode, node);
 return timeout;
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* If not already created, a new <code>drivers</code> element with the given value will be created.
* Otherwise, the existing <code>drivers</code> element will be returned.
* @return  a new or existing instance of <code>DriversType<DatasourcesType<T>></code> 
*/
public DriversType<DatasourcesType<T>> getOrCreateDrivers()
{
 Node node = childNode.getOrCreate("drivers");
 DriversType<DatasourcesType<T>> drivers = new DriversTypeImpl<DatasourcesType<T>>(this, "drivers", childNode, node);
 return drivers;
}
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>xa-datasource</code> element 
* @return the new created instance of <code>XaDatasourceType<DatasourcesType<T>></code> 
*/
public XaDatasourceType<DatasourcesType<T>> createXaDatasource()
{
 return new XaDatasourceTypeImpl<DatasourcesType<T>>(this, "xa-datasource", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Creates a new <code>driver</code> element 
* @return the new created instance of <code>DriverType<DriversType<T>></code> 
*/
public DriverType<DriversType<T>> createDriver()
{
 return new DriverTypeImpl<DriversType<T>>(this, "driver", childNode);
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

public DatasourcesDescriptorImpl(String descriptorName, Node node)
{
 super(descriptorName);
 this.model = node;
 addDefaultNamespaces();
}
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>config-property</code> element 
* @return the new created instance of <code>ConfigPropertyType<ExtensionType<T>></code> 
*/
public ConfigPropertyType<ExtensionType<T>> createConfigProperty()
{
 return new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Creates a new <code>connection-property</code> element 
* @return the new created instance of <code>ConnectionPropertyType<DatasourceType<T>></code> 
*/
public ConnectionPropertyType<DatasourceType<T>> createConnectionProperty()
{
 return new ConnectionPropertyTypeImpl<DatasourceType<T>>(this, "connection-property", 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>xa-datasource</code> element 
* @return the new created instance of <code>XaDatasourceType<DatasourcesDescriptor></code> 
*/
public XaDatasourceType<DatasourcesDescriptor> createXaDatasource()
{
 return new XaDatasourceTypeImpl<DatasourcesDescriptor>(this, "xa-datasource", model);
}
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>xa-datasource</code> element 
* @return the new created instance of <code>XaDatasourceType<DatasourcesDescriptor></code> 
*/
public XaDatasourceType<DatasourcesDescriptor> createXaDatasource()
{
 return new XaDatasourceTypeImpl<DatasourcesDescriptor>(this, "xa-datasource", model);
}
org.jboss.jca.embedded.dsl.datasources12.impl

Most used classes

  • CapacityTypeImpl
    This class implements the capacityType xsd type
  • ConfigPropertyTypeImpl
    This class implements the config-propertyType xsd type
  • ConnectionPropertyTypeImpl
    This class implements the connection-propertyType xsd type
  • DatasourceTypeImpl
    This class implements the datasourceType xsd type
  • DatasourcesDescriptorImpl
    This deployment descriptor provides the functionalities as described in the specification Example
  • DriverTypeImpl,
  • DriversTypeImpl,
  • DsSecurityTypeImpl,
  • ExtensionTypeImpl,
  • PoolTypeImpl,
  • RecoverTypeImpl,
  • StatementTypeImpl,
  • TimeoutTypeImpl,
  • ValidationTypeImpl,
  • XaDatasourcePropertyTypeImpl,
  • XaDatasourceTypeImpl,
  • XaPoolTypeImpl
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