Package org.archfirst.bfoms.domain.security

Examples of org.archfirst.bfoms.domain.security.Person


            String username,
            String password) {
        AuthenticationResponse response =
            securityService.authenticateUser(username, password);
        if (response.isSuccess()) {
            Person person = response.getUser().getPerson();
            return new Result(true, person.getFirstName(), person.getLastName());
        }
        else {
            return new Result(false, "", "");
        }
    }
View Full Code Here

TOP

Related Classes of org.archfirst.bfoms.domain.security.Person

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.