Subversion Repositories XServices

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

package net.brutex.xservices.security;

import java.lang.reflect.Method;

public class StandardSecurityManager implements SecurityManager {

        @Override
        public boolean canExecute(String method, Identity identity) {
                System.out.println("User '"+identity.getUUID()+"' accesses '"+method+"'");
                return true;
        }

}