private void partialCommonValidate() throws ValidateException
{
if (this.allocationRetry != null && this.allocationRetry < 0)
throw new ValidateException(bundle.invalidNegative(Tag.ALLOCATIONRETRY.getLocalName()));
if (this.blockingTimeoutMillis != null && this.blockingTimeoutMillis < 0)
throw new ValidateException(bundle.invalidNegative(Tag.BLOCKINGTIMEOUTMILLIS.getLocalName()));
if (this.allocationRetryWaitMillis != null && this.allocationRetryWaitMillis < 0)
throw new ValidateException(bundle.invalidNegative(Tag.ALLOCATIONRETRYWAITMILLIS.getLocalName()));
if (this.idleTimeoutMinutes != null && this.idleTimeoutMinutes < 0)
throw new ValidateException(bundle.invalidNegative(Tag.IDLETIMEOUTMINUTES.getLocalName()));
if (this.xaResourceTimeout != null && this.xaResourceTimeout < 0)
throw new ValidateException(bundle.invalidNegative(Tag.XARESOURCETIMEOUT.getLocalName()));
}