1 package com.loribel.commons.abstraction; 2 3 import java.util.*; 4 5 /*** 6 * Abstraction of a Object with last modified date. 7 */ 8 public interface GB_LastModifiedOwner 9 { 10 Date getLastModified(); 11 }