public CuratorProjection newCuratorProjection(String connectionName) throws RpcException
{
CuratorFramework client = connectionManager.newConnection(connectionName);
if ( client == null )
{
throw new RpcException(ExceptionType.GENERAL, null, null, "No connection configuration was found with the name: " + connectionName);
}
String id = CuratorEntry.newId();
client.start();
connectionManager.add(id, client);