org.jboss.jca.as.converters.DataSource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ironjacamar-as Show documentation
Show all versions of ironjacamar-as Show documentation
IronJacamar is an implementation of the Java EE Connector Architecture 1.7 specification
/*
* IronJacamar, a Java EE Connector Architecture implementation
* Copyright 2011, Red Hat Inc, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.jca.as.converters;
import org.jboss.jca.common.api.metadata.common.Extension;
import org.jboss.jca.common.api.metadata.ds.Statement.TrackStatementsEnum;
import java.util.HashMap;
import java.util.Map;
/**
* Common DataSource
*
* @author Jeff Zhang
* @version $Revision: $
*/
public interface DataSource extends ConnectionFactory
{
/**
* Get the useJavaContext.
*
* @return the useJavaContext.
*/
public Boolean isUseJavaContext();
/**
* Get the urlDelimiter.
*
* @return the urlDelimiter.
*/
public String getUrlDelimiter();
/**
* Get the urlSelectorStrategyClassName.
*
* @return the urlSelectorStrategyClassName.
*/
public String getUrlSelectorStrategyClassName();
/**
* Get the userName.
*
* @return the userName.
*/
public String getUserName();
/**
* Get the password.
*
* @return the password.
*/
public String getPassword();
/**
* Get the validateOnMatch.
*
* @return the validateOnMatch.
*/
public Boolean isValidateOnMatch();
/**
* Get the newConnectionSql.
*
* @return the newConnectionSql.
*/
public String getNewConnectionSql();
/**
* Get the checkValidConnectionSql.
*
* @return the checkValidConnectionSql.
*/
public String getCheckValidConnectionSql();
/**
* Get the validConnectionChecker
*
* @return the validConnectionChecker
*/
public Extension getValidConnectionChecker();
/**
* Get the exceptionSorter
*
* @return the exceptionSorter
*/
public Extension getExceptionSorter();
/**
* Get the staleConnectionChecker
*
* @return the staleConnectionChecker
*/
public Extension getStaleConnectionChecker();
/**
* Get the trackStatements.
*
* @return the trackStatements.
*/
public TrackStatementsEnum getTrackStatements();
/**
* Get the preparedStatementsCacheSize.
*
* @return the preparedStatementsCacheSize.
*/
public Long getPreparedStatementsCacheSize();
/**
* Get the sharePreparedStatements.
*
* @return the sharePreparedStatements.
*/
public Boolean isSharePreparedStatements();
/**
* Get the setTxQuertTimeout.
*
* @return the setTxQuertTimeout.
*/
public Boolean isSetTxQueryTimeout();
/**
* Get the queryTimeout.
*
* @return the queryTimeout.
*/
public Long getQueryTimeout();
/**
* Get the useTryLock.
*
* @return the useTryLock.
*/
public Long getUseTryLock();
/**
*
* A Tag.
*/
public enum Tag
{
/**
* always first
*/
UNKNOWN(null),
/**
* jndiName tag
*/
JNDI_NAME("jndi-name"),
/**
* use-java-context tag
*/
USE_JAVA_CONTEXT("use-java-context"),
/**
* urlDelimiter tag
*/
URL_DELIMITER("url-delimiter"),
/**
* urlSelectorStrategyClassName tag
*/
URL_SELECTOR_STRATEGY_CLASS_NAME("url-selector-strategy-class-name"),
/**
* userName tag
*/
USER_NAME("user-name"),
/**
* password tag
*/
PASSWORD("password"),
/**
* security-domain tag
*/
SECURITY_DOMAIN("security-domain"),
/**
* security-domain-and-application tag
*/
SECURITY_DOMAIN_AND_APPLICATION("security-domain-and-application"),
/**
* min-pool-size tag
*/
MIN_POOL_SIZE("min-pool-size"),
/**
* maxPoolSize tag
*/
MAX_POOL_SIZE("max-pool-size"),
/**
* blockingTimeoutMillis tag
*/
BLOCKING_TIMEOUT_MILLIS("blocking-timeout-millis"),
/**
* backgroundValidation tag
*/
BACKGROUND_VALIDATION("background-validation"),
/**
* backgroundValidationMillis tag
*/
BACKGROUND_VALIDATION_MILLIS("background-validation-millis"),
/**
* idleTimeoutMinutes tag
*/
IDLE_TIMEOUT_MINUTES("idle-timeout-minutes"),
/**
* allocationRetry tag
*/
ALLOCATION_RETRY("allocation-retry"),
/**
* allocationRetryWaitMillis tag
*/
ALLOCATION_RETRY_WAIT_MILLIS("allocation-retry-wait-millis"),
/**
* validateOnMatch tag
*/
VALIDATE_ON_MATCH("validate-on-match"),
/**
* newConnectionSql tag
*/
NEW_CONNECTION_SQL("new-connection-sql"),
/**
* checkValidConnectionSql tag
*/
CHECK_VALID_CONNECTION_SQL("check-valid-connection-sql"),
/**
* validConnectionCheckerClassName tag
*/
VALID_CONNECTION_CHECKER("valid-connection-checker"),
/**
* exceptionSorterClassName tag
*/
EXCEPTION_SORTER("exception-sorter"),
/**
* staleConnectionCheckerClassName tag
*/
STALE_CONNECTION_CHECKER("stale-connection-checker"),
/**
* trackStatements tag
*/
TRACK_STATEMENTS("track-statements"),
/**
* prefill tag
*/
PREFILL("prefill"),
/**
* useFastFail tag
*/
USE_FAST_FAIL("use-fast-fail"),
/**
* preparedStatementCacheSize tag
*/
PREPARED_STATEMENT_CACHE_SIZE("prepared-statement-cache-size"),
/**
* sharePreparedStatements tag
*/
SHARE_PREPARED_STATEMENTS("share-prepared-statements"),
/**
* setTxQueryTimeout tag
*/
SET_TX_QUERY_TIMEOUT("set-tx-query-timeout"),
/**
* queryTimeout tag
*/
QUERY_TIMEOUT("query-timeout"),
/**
* useTryLock tag
*/
USE_TRY_LOCK("use-try-lock");
private final String name;
/**
*
* Create a new Tag.
*
* @param name a name
*/
Tag(final String name)
{
this.name = name;
}
/**
* Get the local name of this element.
*
* @return the local name
*/
public String getLocalName()
{
return name;
}
/**
* {@inheritDoc}
*/
public String toString()
{
return name;
}
private static final Map MAP;
static
{
final Map map = new HashMap();
for (Tag element : values())
{
final String name = element.getLocalName();
if (name != null)
map.put(name, element);
}
MAP = map;
}
/**
*
* Static method to get enum instance given localName XsdString
*
* @param localName a XsdString used as localname (typically tag name as defined in xsd)
* @return the enum instance
*/
public static Tag forName(String localName)
{
final Tag element = MAP.get(localName);
return element == null ? UNKNOWN : element;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy