001/* 002 * Copyright 2009 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community License, Version 1.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl1.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.ole.sec.businessobject; 017 018import java.util.LinkedHashMap; 019 020import org.kuali.ole.sys.OLEPropertyConstants; 021import org.kuali.rice.core.api.mo.common.active.MutableInactivatable; 022import org.kuali.rice.core.api.util.type.KualiInteger; 023import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 024 025/** 026 * Security Attribute represents attributes that can used within the security system to define restrictions. 027 */ 028public class SecurityAttribute extends PersistableBusinessObjectBase implements MutableInactivatable { 029 private KualiInteger id; 030 private String name; 031 private boolean active; 032 033 public SecurityAttribute() { 034 super(); 035 } 036 037 /** 038 * Gets the id attribute. 039 * 040 * @return Returns the id. 041 */ 042 public KualiInteger getId() { 043 return id; 044 } 045 046 /** 047 * Sets the id attribute value. 048 * 049 * @param id The id to set. 050 */ 051 public void setId(KualiInteger id) { 052 this.id = id; 053 } 054 055 /** 056 * Gets the name attribute. 057 * 058 * @return Returns the name. 059 */ 060 public String getName() { 061 return name; 062 } 063 064 /** 065 * Sets the name attribute value. 066 * 067 * @param name The name to set. 068 */ 069 public void setName(String name) { 070 this.name = name; 071 } 072 073 /** 074 * Gets the active attribute. 075 * 076 * @return Returns the active. 077 */ 078 public boolean isActive() { 079 return active; 080 } 081 082 /** 083 * Sets the active attribute value. 084 * 085 * @param active The active to set. 086 */ 087 public void setActive(boolean active) { 088 this.active = active; 089 } 090 091 /** 092 * @see org.kuali.rice.krad.bo.BusinessObjectBase#toStringMapper() 093 */ 094 095 protected LinkedHashMap toStringMapper_RICE20_REFACTORME() { 096 LinkedHashMap m = new LinkedHashMap(); 097 098 m.put(OLEPropertyConstants.ID, this.id); 099 100 return m; 101 } 102}