1 17 18 package org.apache.lenya.ac; 19 20 24 public interface User extends Identifiable, Item, Groupable { 25 26 31 String getEmail(); 32 33 38 void setEmail(String email); 39 40 44 void setPassword(String plainTextPassword); 45 46 51 void save() throws AccessControlException; 52 53 58 void delete() throws AccessControlException; 59 60 68 boolean authenticate(String password); 69 70 } | Popular Tags |