1 /*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5 package org.kuali.mobility.academics.entity;
6
7 /**
8 *
9 * @author swansje
10 */
11 public interface Subject {
12
13 /**
14 * @return the description
15 */
16 String getDescription();
17
18 /**
19 * @return the id
20 */
21 String getId();
22
23 /**
24 * @return the shortDescription
25 */
26 String getShortDescription();
27
28 /**
29 * @param description the description to set
30 */
31 void setDescription(String description);
32
33 /**
34 * @param id the id to set
35 */
36 void setId(String id);
37
38 /**
39 * @param shortDescription the shortDescription to set
40 */
41 void setShortDescription(String shortDescription);
42
43 }