001package org.kuali.ole.bo.cql; 002 003/** 004 * Created with IntelliJ IDEA. 005 * User: ? 006 * Date: 7/23/12 007 * Time: 6:32 PM 008 * To change this template use File | Settings | File Templates. 009 */ 010public class CQLModifiers { 011 012 private String type; 013 private String value; 014 015 public String getType() { 016 return type; 017 } 018 019 public void setType(String type) { 020 this.type = type; 021 } 022 023 public String getValue() { 024 return value; 025 } 026 027 public void setValue(String value) { 028 this.value = value; 029 } 030}