|
|
@ -33,8 +33,7 @@ public class RemoteSessionConfiguration {
|
|
|
|
private int maxTotalHTTPConnections;
|
|
|
|
private int maxTotalHTTPConnections;
|
|
|
|
private int maxMessagesPerSecond;
|
|
|
|
private int maxMessagesPerSecond;
|
|
|
|
private int sessionIdleTimeOut;
|
|
|
|
private int sessionIdleTimeOut;
|
|
|
|
private int maxSessionDuration;
|
|
|
|
private int maxMessageBufferSize;
|
|
|
|
private int sessionBufferSize;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setRemoteSessionServerUrl(String remoteSessionServerUrl) {
|
|
|
|
public void setRemoteSessionServerUrl(String remoteSessionServerUrl) {
|
|
|
|
this.remoteSessionServerUrl = remoteSessionServerUrl;
|
|
|
|
this.remoteSessionServerUrl = remoteSessionServerUrl;
|
|
|
@ -113,30 +112,17 @@ public class RemoteSessionConfiguration {
|
|
|
|
this.sessionIdleTimeOut = sessionIdleTimeOut;
|
|
|
|
this.sessionIdleTimeOut = sessionIdleTimeOut;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Maximum session duration in minutes
|
|
|
|
|
|
|
|
* @return
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
@XmlElement(name = "MaximumSessionDuration", required = true, defaultValue = "15")
|
|
|
|
|
|
|
|
public int getMaxSessionDuration() {
|
|
|
|
|
|
|
|
return maxSessionDuration;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setMaxSessionDuration(int maxSessionDuration) {
|
|
|
|
|
|
|
|
this.maxSessionDuration = maxSessionDuration;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Maximum session buffer size in kilo bytes
|
|
|
|
* Maximum session buffer size in kilo bytes
|
|
|
|
* @return
|
|
|
|
* @return
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@XmlElement(name = "SessionBufferSize", required = true, defaultValue = "640")
|
|
|
|
@XmlElement(name = "MaximumMessageBufferSize", required = true, defaultValue = "640")
|
|
|
|
public int getSessionBufferSize() {
|
|
|
|
public int getMaxMessageBufferSize() {
|
|
|
|
return sessionBufferSize;
|
|
|
|
return maxMessageBufferSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setSessionBufferSize(int sessionBufferSize) {
|
|
|
|
public void setMaxMessageBufferSize(int MaxMessageBufferSize) {
|
|
|
|
this.sessionBufferSize = sessionBufferSize;
|
|
|
|
this.maxMessageBufferSize = MaxMessageBufferSize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|