1 17 18 package org.objectweb.jac.aspects.authentication; 19 20 import org.objectweb.jac.util.*; 21 22 29 30 public class TrustingAuthentication { 31 32 34 35 public TrustingAuthentication() {} 36 37 41 42 public void authenticate( String userName ) { 43 Log.trace("authentication","Authenticated user "+userName); 44 } 45 46 public void authenticateWithPassword(String userName, String password) { 47 Log.trace("authentication","Authenticated user "+userName); 48 } 49 } 50 | Popular Tags |