?? connectors.java
字號:
package com.jeffhanson.rest.core;
import com.jeffhanson.rest.server.http.HTTPConnector;
public class Connectors
{
private static java.util.HashMap<String, Connector> instances =
new java.util.HashMap<String, Connector>();
public static Connector getConnector(Protocol protocol)
throws ConnectorException
{
String key = protocol.getScheme();
Connector instance = instances.get(key);
if (instance == null)
{
if (key.equalsIgnoreCase(Protocol.HTTP.getScheme()))
{
instance = new HTTPConnector();
instances.put(key, instance);
}
else
{
throw new ConnectorException("Invalid protocol: " + protocol.getScheme());
}
}
return instance;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -