blob: 87d0190e640b9ab8b6d7d080530eac2b5c2c70d2 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.ranger.admin.client;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import org.apache.hadoop.conf.Configuration;
import org.apache.ranger.plugin.model.RangerRole;
import org.apache.ranger.plugin.util.*;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
public abstract class AbstractRangerAdminClient implements RangerAdminClient {
private static final Logger LOG = LoggerFactory.getLogger(AbstractRangerAdminClient.class);
protected Gson gson;
@Override
public void init(String serviceName, String appId, String configPropertyPrefix, Configuration config) {
Gson gson = null;
try {
gson = new GsonBuilder().setDateFormat("yyyyMMdd-HH:mm:ss.SSS-Z").setPrettyPrinting().create();
} catch(Throwable excp) {
LOG.error("AbstractRangerAdminClient: failed to create GsonBuilder object", excp);
}
this.gson = gson;
}
@Override
public ServicePolicies getServicePoliciesIfUpdated(long lastKnownVersion, long lastActivationTimeInMillis) throws Exception {
return null;
}
@Override
public RangerRoles getRolesIfUpdated(long lastKnownRoleVersion, long lastActivationTimeInMillis) throws Exception {
return null;
}
@Override
public RangerRole createRole(RangerRole request) throws Exception {
return null;
}
@Override
public void dropRole(String execUser, String roleName) throws Exception {
}
@Override
public List<String> getAllRoles(String execUser) throws Exception {
return null;
}
@Override
public List<String> getUserRoles(String execUser) throws Exception {
return null;
}
@Override
public RangerRole getRole(String execUser, String roleName) throws Exception {
return null;
}
@Override
public void grantRole(GrantRevokeRoleRequest request) throws Exception {
}
@Override
public void revokeRole(GrantRevokeRoleRequest request) throws Exception {
}
@Override
public void grantAccess(GrantRevokeRequest request) throws Exception {
}
@Override
public void revokeAccess(GrantRevokeRequest request) throws Exception {
}
@Override
public ServiceTags getServiceTagsIfUpdated(long lastKnownVersion, long lastActivationTimeInMillis) throws Exception {
return null;
}
@Override
public List<String> getTagTypes(String tagTypePattern) throws Exception {
return null;
}
}