1 package net.suberic.pooka; 2 3 /** 4 * This interface may be implemented by any object which could have a 5 * default UserProfile associated with it. 6 * 7 */ 8 9 public interface UserProfileContainer { 10 /** 11 * If the object does have a UserProfile associated with it, this method 12 * should return that UserProfile. If the object does not, the method 13 * should return null. 14 */ 15 public UserProfile getDefaultProfile(); 16 17 } 18 19