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.integration.cam; 017 018 import org.kuali.rice.kns.bo.ExternalizableBusinessObject; 019 import org.kuali.rice.kns.util.KualiInteger; 020 021 /** 022 * An interface that declares methods to retrieve information about asset data collected by FP documents. 023 */ 024 public interface CapitalAssetManagementAsset extends ExternalizableBusinessObject { 025 026 /** 027 * Gets the capitalAssetNumber attribute. 028 * 029 * @return Returns the capitalAssetNumber 030 */ 031 public Long getCapitalAssetNumber(); 032 033 /** 034 * Gets the campusTagNumber attribute. 035 * 036 * @return Returns the campusTagNumber 037 */ 038 public String getCampusTagNumber(); 039 040 /** 041 * Gets the capitalAssetTypeCode attribute. 042 * 043 * @return Returns the capitalAssetTypeCode 044 */ 045 public String getCapitalAssetTypeCode(); 046 047 /** 048 * Gets the vendorName attribute. 049 * 050 * @return Returns the vendorName 051 */ 052 public String getVendorName(); 053 054 /** 055 * Gets the manufacturerName attribute. 056 * 057 * @return Returns the manufacturerName 058 */ 059 public String getManufacturerName(); 060 061 /** 062 * Gets the capitalAssetDescription attribute. 063 * 064 * @return Returns the capitalAssetDescription 065 */ 066 public String getCapitalAssetDescription(); 067 068 /** 069 * Gets the manufacturerModelNumber attribute. 070 * 071 * @return Returns the manufacturerModelNumber 072 */ 073 public String getManufacturerModelNumber(); 074 075 /** 076 * Gets the serialNumber attribute. 077 * 078 * @return Returns the serialNumber 079 */ 080 public String getSerialNumber(); 081 082 /** 083 * Gets the campusCode attribute. 084 * 085 * @return Returns the campusCode 086 */ 087 public String getCampusCode(); 088 089 /** 090 * Gets the buildingCode attribute. 091 * 092 * @return Returns the buildingCode 093 */ 094 public String getBuildingCode(); 095 096 /** 097 * Gets the buildingRoomNumber attribute. 098 * 099 * @return Returns the buildingRoomNumber 100 */ 101 public String getBuildingRoomNumber(); 102 103 /** 104 * Gets the buildingSubRoomNumber attribute. 105 * 106 * @return Returns the buildingSubRoomNumber 107 */ 108 public String getBuildingSubRoomNumber(); 109 110 /** 111 * Gets the quantity attribute. 112 * 113 * @return Returns the quantity 114 */ 115 public Integer getQuantity(); 116 }