Package io.fathom.cloud.identity

Source Code of io.fathom.cloud.identity.Users

package io.fathom.cloud.identity;

import io.fathom.cloud.protobuf.IdentityModel.ProjectRoles;
import io.fathom.cloud.protobuf.IdentityModel.UserData;

public class Users {
    public static ProjectRoles findProjectRoles(UserData user, long projectId) {
        ProjectRoles projectRoles = null;
        for (ProjectRoles i : user.getProjectRolesList()) {
            if (i.getProject() == projectId) {
                projectRoles = i;
                break;
            }
        }
        return projectRoles;
    }
}
TOP

Related Classes of io.fathom.cloud.identity.Users

TOP
Copyright © 2018 www.massapi.com. 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.