org.ow2.petals.bc.jms.Constants Maven / Gradle / Ivy
/**
* Copyright (c) 2005-2012 EBM WebSourcing, 2012-2017 Linagora
*
* This program/library 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 program/library 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 program/library; If not, see http://www.gnu.org/licenses/
* for the GNU Lesser General Public License version 2.1.
*/
package org.ow2.petals.bc.jms;
/**
* @author Mohammed El Jai - EBM WebSourcing
* @author Roland Naudin - EBM WebSourcing
*/
public class Constants {
/**
* JMS Property names are defined according to the SOAP over JMS
* specifications (http://www.w3.org/TR/soapjms/)
*/
public class JMSPropertyNames {
/**
* Name of the property containining the soap action.
*/
public static final String JMS_OPERATION_NAME = "jms_operation_name";
}
/**
* Names of JBI descriptors (component and SU) extensions.
*
*/
public class Extensions {
public final static String MAX_ACTIVE = "max-active";
public final static String MAX_IDLE = "max-idle";
public final static String MAX_WAIT = "max-wait";
public final static String TIME_BETWEEN_EVICTION_RUNS_MILLIS = "time-between-eviction-run-smillis";
public final static String MIN_EVICTABLE_IDLE_TIME_MILLIS = "min-evictable-idle-time-millis";
public final static String TEST_WHILE_IDLE = "test-while-idle";
public final static String OPERATION = "operation";
}
}