001 package railo.runtime.type.scope; 002 003 import railo.runtime.config.ConfigServer; 004 005 public final class ClusterRemoteNotSupported implements ClusterRemote { 006 007 public void addEntry(ClusterEntry entry) {} 008 009 /** 010 * @see railo.runtime.type.scope.ClusterRemote#broadcastEntries() 011 */ 012 public void broadcastEntries() { 013 //print.out("ClusterRemote#broadcastEntries()"); 014 } 015 016 /** 017 * @see railo.runtime.type.scope.ClusterRemote#checkValue(java.lang.Object) 018 */ 019 public boolean checkValue(Object value) { 020 return true; 021 } 022 023 /** 024 * @see railo.runtime.type.scope.ClusterRemote#duplicate() 025 */ 026 public ClusterRemote duplicate() { 027 return new ClusterRemoteNotSupported(); 028 } 029 030 public void init(ConfigServer configServer, Cluster cluster) {} 031 032 }