View Javadoc
1   package org.kuali.ole.ingest.pojo;
2   
3   /**
4    * OleRoute is a business object class for Ole Route
5    */
6   public class OleRoute {
7       private String name;
8       private String type;
9       /**
10       * Gets the name attribute.
11       * @return  Returns the name.
12       */
13      public String getName() {
14          return name;
15      }
16      /**
17       * Sets the name attribute value.
18       * @param name The name to set.
19       */
20      public void setName(String name) {
21          this.name = name;
22      }
23      /**
24       * Gets the type attribute.
25       * @return  Returns the type.
26       */
27      public String getType() {
28          return type;
29      }
30      /**
31       * Sets the type attribute value.
32       * @param type The type to set.
33       */
34      public void setType(String type) {
35          this.type = type;
36      }
37  }