View Javadoc
1   /*
2    * Copyright 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.ole.select.businessobject;
17  
18  import org.kuali.rice.core.api.util.type.KualiDecimal;
19  import org.kuali.rice.core.api.util.type.KualiInteger;
20  import org.kuali.rice.krad.bo.PersistableBusinessObject;
21  
22  /**
23   * This class... OleCopies Business Object
24   */
25  public interface OleCopies extends PersistableBusinessObject {
26  
27      public Integer getItemCopiesId();
28  
29      public void setItemCopiesId(Integer itemCopiesId);
30  
31      public Integer getItemIdentifier();
32  
33      public void setItemIdentifier(Integer itemIdentifier);
34  
35      public KualiInteger getParts();
36  
37      public void setParts(KualiInteger parts);
38  
39      public String getPartEnumeration();
40  
41      public void setPartEnumeration(String partEnumeration);
42  
43      public String getLocationCopies();
44  
45      public void setLocationCopies(String locationCopies);
46  
47      public KualiInteger getStartingCopyNumber();
48  
49      public void setStartingCopyNumber(KualiInteger startingCopyNumber);
50  
51      public void setItemCopies(KualiDecimal itemCopies);
52  
53      public KualiDecimal getItemCopies();
54  
55      public String getVolumeNumber();
56  
57      public void setVolumeNumber(String volumeNumber);
58  
59      public String getCaption();
60  
61      public void setCaption(String caption);
62  
63  
64  }