1 package net.sourceforge.rpgee; 2 3 import net.sourceforge.rpgee.exceptions.IdentityException; 4 5 public interface MutableIdentified<T> { 6 public void setId(T _id) throws IdentityException; 7 }