org.finra.herd.sdk.model.SecurityRole Maven / Gradle / Ivy
/*
* herd-external
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: 0.125.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.finra.herd.sdk.model;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
/**
* SecurityRole
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-07-16T17:44:47.669-04:00[America/New_York]")
public class SecurityRole {
@JsonProperty("securityRoleName")
private String securityRoleName = null;
@JsonProperty("description")
private String description = null;
public SecurityRole securityRoleName(String securityRoleName) {
this.securityRoleName = securityRoleName;
return this;
}
/**
* The security role name
* @return securityRoleName
**/
@ApiModelProperty(required = true, value = "The security role name")
public String getSecurityRoleName() {
return securityRoleName;
}
public void setSecurityRoleName(String securityRoleName) {
this.securityRoleName = securityRoleName;
}
public SecurityRole description(String description) {
this.description = description;
return this;
}
/**
* An optional description of this security role
* @return description
**/
@ApiModelProperty(value = "An optional description of this security role")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SecurityRole securityRole = (SecurityRole) o;
return Objects.equals(this.securityRoleName, securityRole.securityRoleName) &&
Objects.equals(this.description, securityRole.description);
}
@Override
public int hashCode() {
return Objects.hash(securityRoleName, description);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SecurityRole {\n");
sb.append(" securityRoleName: ").append(toIndentedString(securityRoleName)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}