io.permit.sdk.enforcement.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permit-sdk-java Show documentation
Show all versions of permit-sdk-java Show documentation
Java SDK for Permit.io: fullstack permissions for cloud native applications
package io.permit.sdk.enforcement;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import io.permit.sdk.openapi.models.UserRoleCreate;
public class User {
private String key;
private String firstName = null;
private String lastName = null;
private String email = null;
private HashMap attributes = null;
private List roleAssignments = null;
public User(Builder builder) {
this.key = builder.key;
this.firstName = builder.firstName;
this.lastName = builder.lastName;
this.email = builder.email;
this.attributes = builder.attributes;
this.roleAssignments = builder.roleAssignments;
}
public String getKey() {
return this.key;
}
public String toString() {
return this.key;
}
public static User fromString(String userKey) {
return new User(new User.Builder(userKey));
}
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
public String getEmail() {
return email;
}
public HashMap getAttributes() {
return attributes;
}
public static class Builder {
private final String key;
private String firstName = null;
private String lastName = null;
private String email = null;
private HashMap attributes = null;
private List roleAssignments;
public Builder(String userKey) {
this.key = userKey;
}
public Builder withFirstName(String firstName) {
this.firstName = firstName;
return this;
}
public Builder withLastName(String lastName) {
this.lastName = lastName;
return this;
}
public Builder withEmail(String email) {
this.email = email;
return this;
}
public Builder withAttributes(HashMap attributes) {
this.attributes = attributes;
return this;
}
public Builder withRoleAssignments(List roleAssignments) {
this.roleAssignments = roleAssignments;
return this;
}
public User build() {
return new User(this);
}
}
}