View Javadoc
1   package org.kuali.coeus.common.api.custom.attr;
2   
3   import org.kuali.coeus.sys.api.model.IdentifiableNumeric;
4   
5   public interface CustomAttributeDocValueContract extends IdentifiableNumeric {
6   
7       String getDocumentNumber();
8       String getValue();
9       CustomAttributeContract getCustomAttribute();
10  }