1/* 2 * Copyright (C) 2007 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17#include <rights/OperationPermission.h> 18#include <rights/Constraint.h> 19 20/** see OperationPermission.h */ 21OperationPermission::OperationPermission() : mConstraint(NULL) 22{ 23 24} 25 26/** see OperationPermission.h */ 27OperationPermission::OperationPermission(OPERATION type, Constraint *cst) : mType(type), mConstraint(cst) 28{ 29 30} 31 32/** see OperationPermission.h */ 33OperationPermission::~OperationPermission() 34{ 35 delete mConstraint; 36} 37 38/** see OperationPermission.h */ 39void OperationPermission::setType(OPERATION type) 40{ 41 mType = type; 42} 43 44/** see OperationPermission.h */ 45OperationPermission::OPERATION OperationPermission::getType() const 46{ 47 return mType; 48} 49 50/** see OperationPermission.h */ 51void OperationPermission::addConstraint(Constraint* constraint) 52{ 53 mConstraint = constraint; 54} 55 56/** see OperationPermission.h */ 57Constraint* OperationPermission::getConstraint() const 58{ 59 return mConstraint; 60} 61