001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.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/ecl2.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 */
016 package org.kuali.kfs.module.cam.businessobject;
017
018 import java.util.LinkedHashMap;
019
020 import org.kuali.rice.kns.bo.Inactivateable;
021 import org.kuali.rice.kns.bo.PersistableBusinessObjectBase;
022
023 /**
024 * @author Kuali Nervous System Team (kualidev@oncourse.iu.edu)
025 */
026 public class AssetCondition extends PersistableBusinessObjectBase implements Inactivateable {
027
028 private String assetConditionCode;
029 private String assetConditionName;
030 private boolean active;
031
032 /**
033 * Default constructor.
034 */
035 public AssetCondition() {
036
037 }
038
039 /**
040 * Gets the assetConditionCode attribute.
041 *
042 * @return Returns the assetConditionCode
043 */
044 public String getAssetConditionCode() {
045 return assetConditionCode;
046 }
047
048 /**
049 * Sets the assetConditionCode attribute.
050 *
051 * @param assetConditionCode The assetConditionCode to set.
052 */
053 public void setAssetConditionCode(String assetConditionCode) {
054 this.assetConditionCode = assetConditionCode;
055 }
056
057
058 /**
059 * Gets the assetConditionName attribute.
060 *
061 * @return Returns the assetConditionName
062 */
063 public String getAssetConditionName() {
064 return assetConditionName;
065 }
066
067 /**
068 * Sets the assetConditionName attribute.
069 *
070 * @param assetConditionName The assetConditionName to set.
071 */
072 public void setAssetConditionName(String assetConditionName) {
073 this.assetConditionName = assetConditionName;
074 }
075
076
077 /**
078 * Gets the active attribute.
079 *
080 * @return Returns the active
081 */
082 public boolean isActive() {
083 return active;
084 }
085
086 /**
087 * Sets the active attribute.
088 *
089 * @param active The active to set.
090 */
091 public void setActive(boolean active) {
092 this.active = active;
093 }
094
095
096 /**
097 * @see org.kuali.rice.kns.bo.BusinessObjectBase#toStringMapper()
098 */
099 protected LinkedHashMap toStringMapper() {
100 LinkedHashMap m = new LinkedHashMap();
101 m.put("assetConditionCode", this.assetConditionCode);
102 return m;
103 }
104 }