org.cloudfoundry.identity.uaa.scim.ScimGroupMember Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudfoundry-identity-scim Show documentation
Show all versions of cloudfoundry-identity-scim Show documentation
Cloud Foundry User Account and Authentication
/*******************************************************************************
* Cloud Foundry
* Copyright (c) [2009-2014] Pivotal Software, Inc. All Rights Reserved.
*
* This product is licensed to you under the Apache License, Version 2.0 (the "License").
* You may not use this product except in compliance with the License.
*
* This product includes a number of subcomponents with
* separate copyright notices and license terms. Your use of these
* subcomponents is subject to the terms and conditions of the
* subcomponent's license, as noted in the LICENSE file.
*******************************************************************************/
package org.cloudfoundry.identity.uaa.scim;
import java.util.Arrays;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.cloudfoundry.identity.uaa.authentication.Origin;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class ScimGroupMember {
@JsonInclude(JsonInclude.Include.NON_NULL)
public enum Role {
MEMBER, READER, WRITER;
}
public static final List GROUP_MEMBER = Arrays.asList(Role.MEMBER);
public static final List GROUP_ADMIN = Arrays.asList(Role.READER, Role.WRITER);
@JsonProperty("value")
private String memberId;
private String origin = Origin.UAA;
@JsonInclude(JsonInclude.Include.NON_NULL)
public enum Type {
USER, GROUP
}
private Type type;
@JsonIgnore
private List roles;
public List getRoles() {
return roles;
}
public void setRoles(List permissions) {
this.roles = permissions;
}
public String getMemberId() {
return memberId;
}
public void setMemberId(String memberId) {
this.memberId = memberId;
}
public Type getType() {
return type;
}
public void setType(Type type) {
this.type = type;
}
@Override
public String toString() {
return String.format("(memberId: %s, type: %s, roles: %s, origin:%s)", getMemberId(), getType(), getRoles(), getOrigin());
}
public String getOrigin() {
return origin;
}
public void setOrigin(String origin) {
//don't allow null values
if (origin==null) {
throw new NullPointerException();
}
this.origin = origin;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ScimGroupMember member = (ScimGroupMember) o;
if (getMemberId() != null ? !getMemberId().equals(member.getMemberId()) : member.getMemberId() != null) return false;
return getType() == member.getType();
}
@Override
public int hashCode() {
int result = getMemberId() != null ? getMemberId().hashCode() : 0;
result = 31 * result + (getOrigin() != null ? getOrigin().hashCode() : 0);
result = 31 * result + (getType() != null ? getType().hashCode() : 0);
return result;
}
public ScimGroupMember() {
}
public ScimGroupMember(String memberId) {
this(memberId, Type.USER, GROUP_MEMBER);
}
public ScimGroupMember(String memberId, Type type, List roles) {
this.memberId = memberId;
this.type = type;
this.roles = roles;
}
}