org.jboss.jca.common.metadata.ds.TimeOutImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ironjacamar-common-impl Show documentation
Show all versions of ironjacamar-common-impl Show documentation
IronJacamar is an implementation of the Java EE Connector Architecture 1.6 specification
/*
* IronJacamar, a Java EE Connector Architecture implementation
* Copyright 2008, 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.common.metadata.ds;
import org.jboss.jca.common.CommonBundle;
import org.jboss.jca.common.api.metadata.ds.TimeOut;
import org.jboss.jca.common.api.validator.ValidateException;
import org.jboss.logging.Messages;
/**
*
* A TimeOutImpl.
*
* @author Stefano Maestri
*
*/
public class TimeOutImpl extends org.jboss.jca.common.metadata.common.TimeOutImpl implements TimeOut
{
/** The serialVersionUID */
private static final long serialVersionUID = 1L;
/** The bundle */
private static CommonBundle bundle = Messages.getBundle(CommonBundle.class);
private final Boolean setTxQueryTimeout;
private final Long queryTimeout;
private final Long useTryLock;
/**
* Create a new TimeOutImpl.
*
* @param blockingTimeoutMillis blockingTimeoutMillis
* @param idleTimeoutMinutes idleTimeoutMinutes
* @param allocationRetry allocationRetry
* @param allocationRetryWaitMillis allocationRetryWaitMillis
* @param xaResourceTimeout xaResourceTimeout
* @param setTxQueryTimeout setTxQueryTimeout
* @param queryTimeout queryTimeout
* @param useTryLock useTryLock
* @throws ValidateException ValidateException
*/
public TimeOutImpl(Long blockingTimeoutMillis, Long idleTimeoutMinutes, Integer allocationRetry,
Long allocationRetryWaitMillis, Integer xaResourceTimeout, Boolean setTxQueryTimeout, Long queryTimeout,
Long useTryLock) throws ValidateException
{
super(blockingTimeoutMillis, idleTimeoutMinutes, allocationRetry, allocationRetryWaitMillis,
xaResourceTimeout);
this.setTxQueryTimeout = setTxQueryTimeout;
this.queryTimeout = queryTimeout;
this.useTryLock = useTryLock;
this.validate();
}
/**
* Get the setTxQuertTimeout.
*
* @return the setTxQuertTimeout.
*/
@Override
public final Boolean isSetTxQueryTimeout()
{
return setTxQueryTimeout;
}
/**
* Get the queryTimeout.
*
* @return the queryTimeout.
*/
@Override
public final Long getQueryTimeout()
{
return queryTimeout;
}
/**
* Get the useTryLock.
*
* @return the useTryLock.
*/
@Override
public final Long getUseTryLock()
{
return useTryLock;
}
@Override
public int hashCode()
{
final int prime = 31;
int result = super.hashCode();
result = prime * result + ((queryTimeout == null) ? 0 : queryTimeout.hashCode());
result = prime * result + ((setTxQueryTimeout == null) ? 0 : setTxQueryTimeout.hashCode());
result = prime * result + ((useTryLock == null) ? 0 : useTryLock.hashCode());
return result;
}
@Override
public boolean equals(Object obj)
{
if (this == obj)
return true;
if (!super.equals(obj))
return false;
if (!(obj instanceof TimeOutImpl))
return false;
TimeOutImpl other = (TimeOutImpl) obj;
if (queryTimeout == null)
{
if (other.queryTimeout != null)
return false;
}
else if (!queryTimeout.equals(other.queryTimeout))
return false;
if (setTxQueryTimeout == null)
{
if (other.setTxQueryTimeout != null)
return false;
}
else if (!setTxQueryTimeout.equals(other.setTxQueryTimeout))
return false;
if (useTryLock == null)
{
if (other.useTryLock != null)
return false;
}
else if (!useTryLock.equals(other.useTryLock))
return false;
return true;
}
@Override
public String toString()
{
StringBuilder sb = new StringBuilder();
sb.append("");
if (blockingTimeoutMillis != null)
{
sb.append("<").append(TimeOut.Tag.BLOCKING_TIMEOUT_MILLIS).append(">");
sb.append(blockingTimeoutMillis);
sb.append("").append(TimeOut.Tag.BLOCKING_TIMEOUT_MILLIS).append(">");
}
if (idleTimeoutMinutes != null)
{
sb.append("<").append(TimeOut.Tag.IDLE_TIMEOUT_MINUTES).append(">");
sb.append(idleTimeoutMinutes);
sb.append("").append(TimeOut.Tag.IDLE_TIMEOUT_MINUTES).append(">");
}
if (setTxQueryTimeout != null && Boolean.TRUE.equals(setTxQueryTimeout))
{
sb.append("<").append(TimeOut.Tag.SET_TX_QUERY_TIMEOUT).append("/>");
}
if (queryTimeout != null)
{
sb.append("<").append(TimeOut.Tag.QUERY_TIMEOUT).append(">");
sb.append(queryTimeout);
sb.append("").append(TimeOut.Tag.QUERY_TIMEOUT).append(">");
}
if (useTryLock != null)
{
sb.append("<").append(TimeOut.Tag.USE_TRY_LOCK).append(">");
sb.append(useTryLock);
sb.append("").append(TimeOut.Tag.USE_TRY_LOCK).append(">");
}
if (allocationRetry != null)
{
sb.append("<").append(TimeOut.Tag.ALLOCATION_RETRY).append(">");
sb.append(allocationRetry);
sb.append("").append(TimeOut.Tag.ALLOCATION_RETRY).append(">");
}
if (allocationRetryWaitMillis != null)
{
sb.append("<").append(TimeOut.Tag.ALLOCATION_RETRY_WAIT_MILLIS).append(">");
sb.append(allocationRetryWaitMillis);
sb.append("").append(TimeOut.Tag.ALLOCATION_RETRY_WAIT_MILLIS).append(">");
}
if (xaResourceTimeout != null)
{
sb.append("<").append(TimeOut.Tag.XA_RESOURCE_TIMEOUT).append(">");
sb.append(xaResourceTimeout);
sb.append("").append(TimeOut.Tag.XA_RESOURCE_TIMEOUT).append(">");
}
sb.append(" ");
return sb.toString();
}
@Override
public void validate() throws ValidateException
{
if (this.queryTimeout != null && this.queryTimeout < 0)
throw new ValidateException(bundle.invalidNegative(TimeOut.Tag.QUERY_TIMEOUT.getLocalName()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy