*/
static class ViewEndpointFactory implements EndpointFactory {
@Override
public Endpoint create(final String hostname, final String bucket, final String password, final int port,
final CoreEnvironment env, final RingBuffer<ResponseEvent> responseBuffer) {
return new ViewEndpoint(hostname, bucket, password, port, env, responseBuffer);
}