1 3 package org.jgroups.conf; 4 5 15 16 public class PlainConfigurator implements ProtocolStackConfigurator 17 { 18 private final String mProperties; 19 20 23 public PlainConfigurator(String properties) 24 { 25 mProperties = properties; 26 } 27 28 31 public String getProtocolStackString() 32 { 33 return mProperties; 34 } 35 36 39 public ProtocolData[] getProtocolStack() 40 { 41 42 throw new java.lang.UnsupportedOperationException ("Method getProtocolStack() not yet implemented."); 43 } 44 } 45 | Popular Tags |