示例#1
0
 /**
  * Returns a pretty-printed form of all the protocols. If include_properties is set, the
  * properties for each protocol will also be printed.
  */
 @ManagedOperation
 public String printProtocolSpec(boolean include_properties) {
   ProtocolStack ps = getProtocolStack();
   return ps != null ? ps.printProtocolSpec(include_properties) : null;
 }
示例#2
0
 /**
  * Returns the protocol stack configuration in string format. An example of this property is<br>
  * "UDP:PING:FD:STABLE:NAKACK:UNICAST:FRAG:FLUSH:GMS:VIEW_ENFORCER:STATE_TRANSFER:QUEUE"
  */
 public String getProperties() {
   return prot_stack != null ? prot_stack.printProtocolSpec(true) : null;
 }