plainconfigurator.java

来自「JGRoups源码」· Java 代码 · 共 45 行

JAVA
45
字号
// $Id: PlainConfigurator.java,v 1.2 2004/09/23 16:29:14 belaban Exp $package org.jgroups.conf;/** * A ProtocolStackConfigurator for the old style properties. * <BR> * Old style properties are referred to as the property string used by channel earlier * they look like this PROTOCOL(param=value;param=value):PROTOCOL:PROTOCOL<BR> * All it does is that it holds the string, it currently doesn't parse it at all. * * @author Filip Hanik (<a href="mailto:filip@filip.net">filip@filip.net) * @version 1.0 */public class PlainConfigurator implements ProtocolStackConfigurator{    private final String mProperties;        /**     * Instantiates a PlainConfigurator with old style properties     */    public PlainConfigurator(String properties)    {        mProperties = properties;    }        /**     * returns the old style protocol string     */    public String getProtocolStackString()    {        return mProperties;    }        /**     * Throws a UnsupportedOperationException all the time. No parsing implemented.     */    public ProtocolData[] getProtocolStack()    {        /**todo: Implement this org.jgroups.conf.ProtocolStackConfigurator method*/        throw new java.lang.UnsupportedOperationException("Method getProtocolStack() not yet implemented.");    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?