
com.vmware.avi.sdk.model.SamlAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of avisdk Show documentation
Show all versions of avisdk Show documentation
Avi SDK is a java API which creates a session with controller and perform CRUD operations.
/*
* Copyright 2021 VMware, Inc.
* SPDX-License-Identifier: Apache License 2.0
*/
package com.vmware.avi.sdk.model;
import java.util.*;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* The SamlAttribute is a POJO class extends AviRestResource that used for creating
* SamlAttribute.
*
* @version 1.0
* @since
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SamlAttribute {
@JsonProperty("attr_name")
private String attrName;
@JsonProperty("attr_values")
private List attrValues;
/**
* This is the getter method this will return the attribute value.
* Saml attribute name.
* Field introduced in 20.1.1.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return attrName
*/
public String getAttrName() {
return attrName;
}
/**
* This is the setter method to the attribute.
* Saml attribute name.
* Field introduced in 20.1.1.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param attrName set the attrName.
*/
public void setAttrName(String attrName) {
this.attrName = attrName;
}
/**
* This is the getter method this will return the attribute value.
* Saml attribute values.
* Field introduced in 20.1.1.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return attrValues
*/
public List getAttrValues() {
return attrValues;
}
/**
* This is the setter method. this will set the attrValues
* Saml attribute values.
* Field introduced in 20.1.1.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return attrValues
*/
public void setAttrValues(List attrValues) {
this.attrValues = attrValues;
}
/**
* This is the setter method this will set the attrValues
* Saml attribute values.
* Field introduced in 20.1.1.
* Allowed in enterprise edition with any value, essentials, basic, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return attrValues
*/
public SamlAttribute addAttrValuesItem(String attrValuesItem) {
if (this.attrValues == null) {
this.attrValues = new ArrayList();
}
this.attrValues.add(attrValuesItem);
return this;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
SamlAttribute objSamlAttribute = (SamlAttribute) o;
return Objects.equals(this.attrName, objSamlAttribute.attrName)&&
Objects.equals(this.attrValues, objSamlAttribute.attrValues);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SamlAttribute {\n");
sb.append(" attrName: ").append(toIndentedString(attrName)).append("\n");
sb.append(" attrValues: ").append(toIndentedString(attrValues)).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 ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy