001package org.kuali.coeus.common.api.custom.attr;
002
003
004import org.kuali.coeus.sys.api.model.IdentifiableNumeric;
005
006public interface CustomAttributeContract extends IdentifiableNumeric {
007
008    Integer getDataLength();
009    String getDataTypeCode();
010    String getDefaultValue();
011    String getGroupName();
012    String getLabel();
013    String getLookupClass();
014    String getLookupReturn();
015    String getName();
016    CustomAttributeDataTypeContract getCustomAttributeDataType();
017
018}