1 16 17 package org.apache.jetspeed.services.security; 18 19 import org.apache.turbine.services.Service; 20 21 import org.apache.jetspeed.om.security.JetspeedUser; 22 23 37 38 public interface PortalAuthentication extends Service 39 { 40 public String SERVICE_NAME = "PortalAuthentication"; 41 42 55 JetspeedUser login(String username, String password) 56 throws LoginException; 57 58 64 JetspeedUser getAnonymousUser() 65 throws LoginException; 66 67 76 void logout() 77 throws LoginException; 78 } 79 | Popular Tags |