make the alwaysSend flag public, so that we can set it through config
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 17 Apr 2008 19:58:51 +0000 (19:58 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 17 Apr 2008 19:58:51 +0000 (19:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@649252 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/tribes/group/interceptors/MessageDispatchInterceptor.java

index afcda25..aeb8443 100644 (file)
@@ -198,5 +198,13 @@ public class MessageDispatchInterceptor extends ChannelInterceptorBase implement
         return link;
     }
 
+    public boolean isAlwaysSend() {
+        return alwaysSend;
+    }
+
+    public void setAlwaysSend(boolean alwaysSend) {
+        this.alwaysSend = alwaysSend;
+    }
+
 
 }