Add the setters/getters back for the ignore wireformat options.

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1174097 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2011-09-22 12:45:07 +00:00
parent f0e6f26623
commit d314b7f57d
1 changed files with 16 additions and 0 deletions

View File

@ -112,4 +112,20 @@ public class InactivityMonitor extends AbstractInactivityMonitor {
return configured;
}
public boolean isIgnoreAllWireFormatInfo() {
return ignoreAllWireFormatInfo;
}
public void setIgnoreAllWireFormatInfo(boolean ignoreAllWireFormatInfo) {
this.ignoreAllWireFormatInfo = ignoreAllWireFormatInfo;
}
public boolean isIgnoreRemoteWireFormat() {
return ignoreRemoteWireFormat;
}
public void setIgnoreRemoteWireFormat(boolean ignoreRemoteWireFormat) {
this.ignoreRemoteWireFormat = ignoreRemoteWireFormat;
}
}