blob: cc00ca3364a507fab0235b2a66a59b7ce0776fb9 [file] [log] [blame]
/*
* Copyright 1999-2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.sandesha2.util;
import org.apache.sandesha2.policy.RMPolicyBean;
/**
* Used to hold peoperties loaded from sandesha2.properties file or Sandesha2Constants.
*
* @author Chamikara Jayalath <chamikaramj@gmail.com>
*/
public class SandeshaPropertyBean {
RMPolicyBean policyBean = new RMPolicyBean ();
String storageManagerClass = null;
boolean inOrder = true;
public long getInactiveTimeoutInterval() {
return policyBean.getInactiveTimeoutInterval();
}
public long getAcknowledgementInaterval() {
return policyBean.getAcknowledgementInaterval();
}
public long getRetransmissionInterval() {
return policyBean.getRetransmissionInterval();
}
public boolean isExponentialBackoff() {
return policyBean.isExponentialBackoff();
}
public void setExponentialBackoff(boolean exponentialBackoff) {
policyBean.setExponentialBackoff(exponentialBackoff);
}
public void setRetransmissionInterval(long retransmissionInterval) {
policyBean.setRetransmissionInterval(retransmissionInterval);
}
public void setInactiveTimeoutInterval(int value, String measure) {
long timeOut = -1;
if (measure==null) {
policyBean.setInactiveTimeoutInterval(timeOut);
return;
} else if ("seconds".equals(measure)){
timeOut = value*1000;
} else if ("minutes".equals(measure)){
timeOut = value*60*1000;
} else if ("hours".equals(measure)){
timeOut = value*60*60*1000;
} else if ("days".equals(measure)){
timeOut = value*24*60*60*1000;
}
policyBean.setInactiveTimeoutInterval(timeOut);
}
public void setAcknowledgementInterval(long acknowledgementInterval) {
policyBean.setAcknowledgementInterval(acknowledgementInterval);
}
public String getStorageManagerClass() {
return storageManagerClass;
}
public void setStorageManagerClass(String storageManagerClass) {
this.storageManagerClass = storageManagerClass;
}
public RMPolicyBean getPolicyBean () {
return policyBean;
}
public boolean isInOrder() {
return inOrder;
}
public void setInOrder(boolean inOrder) {
this.inOrder = inOrder;
}
}