1 16 17 package org.apache.jetspeed.om.security; 18 19 import org.apache.turbine.om.security.User; 20 21 import java.util.Date ; 22 23 30 public interface JetspeedUser extends User 31 { 32 public static final String DISABLED = "DISABLED"; 33 public static final String USER_ID = "USER_ID"; 34 public static final String PASSWORD_CHANGED = "PASSWORD_CHANGED"; 35 36 41 public boolean getDisabled(); 42 43 public void setDisabled(boolean disabled); 44 45 46 51 public String getUserId(); 52 53 54 public boolean isNew(); 55 56 61 public Date getPasswordChanged(); 62 63 68 public void setPasswordChanged(Date value); 69 70 } 71 | Popular Tags |