package com.thinkbiganalytics.datalake.authorization.rest.model; /*- * #%L * thinkbig-ranger-rest-client * %% * Copyright (C) 2017 ThinkBig Analytics * %% * Licensed 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. * #L% */ /** */ public class RangerPolicy { private int id; private String owner; private String updatedBy; private String policyName; private String resourceName; private String repositoryName; private String repositoryType; private String tables; private String columns; private String databases; private String udfs; private String isEnabled; private String isRecursive; private String isAuditEnabled; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getOwner() { return owner; } public void setOwner(String owner) { this.owner = owner; } public String getUpdatedBy() { return updatedBy; } public void setUpdatedBy(String updatedBy) { this.updatedBy = updatedBy; } public String getPolicyName() { return policyName; } public void setPolicyName(String policyName) { this.policyName = policyName; } public String getResourceName() { return resourceName; } public void setResourceName(String resourceName) { this.resourceName = resourceName; } public String getRepositoryName() { return repositoryName; } public void setRepositoryName(String repositoryName) { this.repositoryName = repositoryName; } public String getRepositoryType() { return repositoryType; } public void setRepositoryType(String repositoryType) { this.repositoryType = repositoryType; } public String getTables() { return tables; } public void setTables(String tables) { this.tables = tables; } public String getColumns() { return columns; } public void setColumns(String columns) { this.columns = columns; } public String getDatabases() { return databases; } public void setDatabases(String databases) { this.databases = databases; } public String getUdfs() { return udfs; } public void setUdfs(String udfs) { this.udfs = udfs; } public String getIsEnabled() { return isEnabled; } public void setIsEnabled(String isEnabled) { this.isEnabled = isEnabled; } public String getIsRecursive() { return isRecursive; } public void setIsRecursive(String isRecursive) { this.isRecursive = isRecursive; } public String getIsAuditEnabled() { return isAuditEnabled; } public void setIsAuditEnabled(String isAuditEnabled) { this.isAuditEnabled = isAuditEnabled; } }