View Javadoc
1   package org.kuali.coeus.sys.api.model;
2   
3   /**
4    * This interface can be used to identify an object which has a unique
5    * identifier.
6    */
7   public interface IdentifiableNumeric {
8   
9       /**
10       * The unique identifier for an object.  This can be null unless the
11       * object has not been given an id yet.
12       *
13       * @return the id
14       */
15      Long getId();
16  }