use of org.apache.accumulo.server.security.handler.ZKAuthorizor in project accumulo by apache.
the class SecurityOperation method getAuthorizor.
protected static Authorizor getAuthorizor(ServerContext context) {
Authorizor toRet = Property.createInstanceFromPropertyName(context.getConfiguration(), Property.INSTANCE_SECURITY_AUTHORIZOR, Authorizor.class, new ZKAuthorizor());
toRet.initialize(context);
return toRet;
}
Aggregations