Author: jstrachan
Date: Thu Mar 9 10:02:47 2006
New Revision: 384568
URL: http://svn.apache.org/viewcvs?rev=384568&view=rev
Log:
added helper method
Modified:
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormat.java
Modified:
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormat.java
URL:
http://svn.apache.org/viewcvs/incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormat.java?rev=384568&r1=384567&r2=384568&view=diff
==============================================================================
---
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormat.java
(original)
+++
incubator/activemq/trunk/activemq-core/src/main/java/org/apache/activemq/openwire/OpenWireFormat.java
Thu Mar 9 10:02:47 2006
@@ -79,6 +79,16 @@
;
}
+ public OpenWireFormat copy() {
+ OpenWireFormat answer = new OpenWireFormat();
+ answer.stackTraceEnabled = stackTraceEnabled;
+ answer.tcpNoDelayEnabled = tcpNoDelayEnabled;
+ answer.cacheEnabled = cacheEnabled;
+ answer.tightEncodingEnabled = tightEncodingEnabled;
+ answer.sizePrefixDisabled = sizePrefixDisabled;
+ return answer;
+ }
+
public boolean equals(Object object) {
if( object == null )
return false;