Package io.fathom.cloud.protobuf.IdentityModel

Examples of io.fathom.cloud.protobuf.IdentityModel.ProjectRolesSecretData


        if (!projectRoles.hasSecretData()) {
            throw new IllegalStateException("Project role has no secret data");
        }

        ProjectRolesSecretData projectRolesSecretData;
        try {
            projectRolesSecretData = unlock(projectRoles.getSecretData(), user, ProjectRolesSecretData.newBuilder());
        } catch (IOException e) {
            throw new IllegalStateException("Error unlocking project", e);
        }

        int version = 0;
        if (projectRolesSecretData.hasProjectKeyVersion()) {
            version = projectRolesSecretData.getProjectKeyVersion();
        }

        ByteString projectKeyBytes = projectRolesSecretData.getProjectKey();
        if (projectKeyBytes == null) {
            throw new IllegalStateException();
        }

        if (version == 1) {
View Full Code Here

TOP

Related Classes of io.fathom.cloud.protobuf.IdentityModel.ProjectRolesSecretData

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.