Package io.fathom.cloud.protobuf.CloudCommons

Examples of io.fathom.cloud.protobuf.CloudCommons.TokenInfo


    }

    @Override
    @Transactional
    public AuthenticatedUser authenticate(String tokenId) throws CloudException {
        TokenInfo tokenInfo = findTokenInfo(tokenId);
        if (tokenInfo == null) {
            return null;
        }

        return authenticate(tokenInfo);
View Full Code Here


        secretService.changePassword(user, credential, password, recoveryKey);
    }

    protected TokenInfo findTokenInfo(String tokenId) {
        try {
            TokenInfo tokenInfo = tokenService.findValidToken(tokenId);
            return tokenInfo;
        } catch (Exception e) {
            log.warn("Unexpected error while reading token", e);
            return null;
        }
View Full Code Here

TOP

Related Classes of io.fathom.cloud.protobuf.CloudCommons.TokenInfo

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.