Coverage Report - org.kuali.rice.kew.doctype.SecurityPermissionInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
SecurityPermissionInfo
0%
0/15
N/A
1
 
 1  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
 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  
 package org.kuali.rice.kew.doctype;
 17  
 
 18  
 import java.util.HashMap;
 19  
 import java.util.Map;
 20  
 
 21  
 /**
 22  
  * This is a description of what this class does - jjhanso don't forget to fill this in. 
 23  
  * 
 24  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 25  
  *
 26  
  */
 27  0
 public class SecurityPermissionInfo {
 28  
 
 29  
         private String permissionName;
 30  
         private String permissionNamespaceCode;
 31  0
         private Map<String, String> permissionDetails = new HashMap<String, String>();
 32  0
         private Map<String, String> qualifications = new HashMap<String, String>();
 33  
         
 34  
         
 35  
         /**
 36  
          * @return the permissionName
 37  
          */
 38  
         public String getPermissionName() {
 39  0
                 return this.permissionName;
 40  
         }
 41  
         /**
 42  
          * @param permissionName the permissionName to set
 43  
          */
 44  
         public void setPermissionName(String permissionName) {
 45  0
                 this.permissionName = permissionName;
 46  0
         }
 47  
         /**
 48  
          * @return the permissionNamespaceCode
 49  
          */
 50  
         public String getPermissionNamespaceCode() {
 51  0
                 return this.permissionNamespaceCode;
 52  
         }
 53  
         /**
 54  
          * @param permissionNamespaceCode the permissionNamespaceCode to set
 55  
          */
 56  
         public void setPermissionNamespaceCode(String permissionNamespaceCode) {
 57  0
                 this.permissionNamespaceCode = permissionNamespaceCode;
 58  0
         }
 59  
         /**
 60  
          * @return the permissionDetails
 61  
          */
 62  
         public Map<String, String> getPermissionDetails() {
 63  0
                 return this.permissionDetails;
 64  
         }
 65  
         /**
 66  
          * @param permissionDetails the permissionDetails to set
 67  
          */
 68  
         public void setPermissionDetails(Map<String, String> permissionDetails) {
 69  0
                 this.permissionDetails = permissionDetails;
 70  0
         }
 71  
         /**
 72  
          * @return the qualifications
 73  
          */
 74  
         public Map<String, String> getQualifications() {
 75  0
                 return this.qualifications;
 76  
         }
 77  
         /**
 78  
          * @param qualifications the qualifications to set
 79  
          */
 80  
         public void setQualifications(Map<String, String> qualifications) {
 81  0
                 this.qualifications = qualifications;
 82  0
         }
 83  
         
 84  
         
 85  
 }