1 /* 2 * Copyright (c) 2021 Huawei Device Co., Ltd. 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 16 package ohos; 17 18 /** 19 * DefPermissionGroup info. 20 * @deprecated 21 */ 22 public class DefPermissionGroup { 23 /** 24 * Indicates the name of DefPermissionGroup. 25 */ 26 public String name = ""; 27 28 /** 29 * Indicates the order of DefPermissionGroup. 30 */ 31 public String order = ""; 32 33 /** 34 * Indicates the icon of DefPermissionGroup. 35 */ 36 public String icon = ""; 37 38 /** 39 * Indicates the label of DefPermissionGroup. 40 */ 41 public String label = ""; 42 43 /** 44 * Indicates the description of DefPermissionGroup. 45 */ 46 public String description = ""; 47 48 /** 49 * Indicates the request of DefPermissionGroup. 50 */ 51 public String request = ""; 52 }