1 package org.kuali.coeus.sys.api.model; 2 3 /** 4 * Represents an object which has a code value. 5 */ 6 public interface Coded { 7 8 /** 9 * The code value for this object. In general a code value cannot be null or a blank string. 10 * 11 * @return the code value for this object. 12 */ 13 String getCode(); 14 15 }