mirror of https://github.com/apache/activemq.git
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:
parent
f0e6f26623
commit
d314b7f57d
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue