Package com.sforce.soap.authentication

Examples of com.sforce.soap.authentication.AuthenticateResult


    public AuthenticateResult authenticate(Authenticate parameters) throws java.rmi.RemoteException {

        boolean authenticated = tokenStore.confirmToken(parameters.getUsername(), parameters.getPassword());
        logger.info("User " + parameters.getUsername() + " has been authenticated");

        return new AuthenticateResult(authenticated);

    }
View Full Code Here

TOP

Related Classes of com.sforce.soap.authentication.AuthenticateResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.