| /* |
| * 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 |
| * |
| * https://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.accumulo.core.security; |
| |
| import java.util.ArrayList; |
| import java.util.List; |
| |
| /** |
| * Accumulo table permissions. Each permission has an associated byte ID. |
| */ |
| public enum TablePermission { |
| /* |
| * One may add new permissions, but new permissions must use new numbers. Current numbers in use |
| * must not be changed. |
| */ |
| // CREATE_LOCALITY_GROUP(0), |
| // DROP_LOCALITY_GROUP(1), |
| READ((byte) 2), |
| WRITE((byte) 3), |
| BULK_IMPORT((byte) 4), |
| ALTER_TABLE((byte) 5), |
| GRANT((byte) 6), |
| DROP_TABLE((byte) 7), |
| GET_SUMMARIES((byte) 8); |
| |
| private final byte permID; |
| |
| private static final TablePermission[] mapping = new TablePermission[9]; |
| static { |
| for (TablePermission perm : TablePermission.values()) { |
| mapping[perm.permID] = perm; |
| } |
| } |
| |
| private TablePermission(byte id) { |
| this.permID = id; |
| } |
| |
| /** |
| * Gets the byte ID of this permission. |
| * |
| * @return byte ID |
| */ |
| public byte getId() { |
| return this.permID; |
| } |
| |
| /** |
| * Returns a list of printable permission values. |
| * |
| * @return list of table permission values, as "Table." + permission name |
| */ |
| public static List<String> printableValues() { |
| TablePermission[] a = TablePermission.values(); |
| |
| List<String> list = new ArrayList<>(a.length); |
| |
| for (TablePermission p : a) { |
| list.add("Table." + p); |
| } |
| |
| return list; |
| } |
| |
| /** |
| * Gets the permission matching the given byte ID. |
| * |
| * @param id byte ID |
| * @return table permission |
| * @throws IndexOutOfBoundsException if the byte ID is invalid |
| */ |
| public static TablePermission getPermissionById(byte id) { |
| TablePermission result = mapping[id]; |
| if (result != null) { |
| return result; |
| } |
| throw new IndexOutOfBoundsException("No such permission"); |
| } |
| |
| } |