| // Copyright (C) 2013 The Android Open Source Project |
| // |
| // 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. |
| |
| package com.google.gerrit.server.config; |
| |
| public class CapabilityConstants { |
| public static String accessDatabase = "Access Database"; |
| public static String administrateServer = "Administrate Server"; |
| public static String batchChangesLimit = "Batch Changes Limit"; |
| public static String createAccount = "Create Account"; |
| public static String createGroup = "Create Group"; |
| public static String deleteGroup = "Delete Group"; |
| public static String createProject = "Create Project"; |
| public static String emailReviewers = "Email Reviewers"; |
| public static String flushCaches = "Flush Caches"; |
| public static String killTask = "Kill Task"; |
| public static String maintainServer = "Maintain Server"; |
| public static String modifyAccount = "Modify Account"; |
| public static String priority = "Priority"; |
| public static String readAs = "Read As"; |
| public static String queryLimit = "Query Limit"; |
| public static String runAs = "Run As"; |
| public static String runGC = "Run Garbage Collection"; |
| public static String streamEvents = "Stream Events"; |
| public static String viewAccess = "View Access"; |
| public static String viewAllAccounts = "View All Accounts"; |
| public static String viewCaches = "View Caches"; |
| public static String viewConnections = "View Connections"; |
| public static String viewPlugins = "View Plugins"; |
| public static String viewQueue = "View Queue"; |
| public static String viewSecondaryEmails = "View Secondary Emails"; |
| } |