Line data Source code
1 : // Copyright (C) 2013 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.server.config; 16 : 17 : import org.eclipse.jgit.nls.NLS; 18 : import org.eclipse.jgit.nls.TranslationBundle; 19 : 20 2 : public class CapabilityConstants extends TranslationBundle { 21 : public static CapabilityConstants get() { 22 2 : return NLS.getBundleFor(CapabilityConstants.class); 23 : } 24 : 25 : public String accessDatabase; 26 : public String administrateServer; 27 : public String batchChangesLimit; 28 : public String createAccount; 29 : public String createGroup; 30 : public String createProject; 31 : public String emailReviewers; 32 : public String flushCaches; 33 : public String killTask; 34 : public String maintainServer; 35 : public String modifyAccount; 36 : public String priority; 37 : public String readAs; 38 : public String queryLimit; 39 : public String runAs; 40 : public String runGC; 41 : public String streamEvents; 42 : public String viewAccess; 43 : public String viewAllAccounts; 44 : public String viewCaches; 45 : public String viewConnections; 46 : public String viewPlugins; 47 : public String viewQueue; 48 : }