1 package org.kuali.ole.bo.cql;
2
3 /**
4 * Created with IntelliJ IDEA.
5 * User: ?
6 * Date: 7/23/12
7 * Time: 6:32 PM
8 * To change this template use File | Settings | File Templates.
9 */
10 public class CQLModifiers {
11
12 private String type;
13 private String value;
14
15 public String getType() {
16 return type;
17 }
18
19 public void setType(String type) {
20 this.type = type;
21 }
22
23 public String getValue() {
24 return value;
25 }
26
27 public void setValue(String value) {
28 this.value = value;
29 }
30 }