com.vmware.avi.sdk.model.CSRFPolicy 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.
The newest version!
/*
* 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 CSRFPolicy is a POJO class extends AviRestResource that used for creating
* CSRFPolicy.
*
* @version 1.0
* @since
*
*/
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class CSRFPolicy extends AviRestResource {
@JsonProperty("cookie_name")
private String cookieName = "X-CSRF-TOKEN";
@JsonProperty("description")
private String description;
@JsonProperty("name")
private String name;
@JsonProperty("rules")
private List rules;
@JsonProperty("tenant_ref")
private String tenantRef;
@JsonProperty("token_validity_time_min")
private Integer tokenValidityTimeMin = 360;
@JsonProperty("url")
private String url = "url";
@JsonProperty("uuid")
private String uuid;
/**
* This is the getter method this will return the attribute value.
* Name of the cookie to be used for csrf token.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as "X-CSRF-TOKEN".
* @return cookieName
*/
public String getCookieName() {
return cookieName;
}
/**
* This is the setter method to the attribute.
* Name of the cookie to be used for csrf token.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as "X-CSRF-TOKEN".
* @param cookieName set the cookieName.
*/
public void setCookieName(String cookieName) {
this.cookieName = cookieName;
}
/**
* This is the getter method this will return the attribute value.
* Human-readable description of this csrf protection policy.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return description
*/
public String getDescription() {
return description;
}
/**
* This is the setter method to the attribute.
* Human-readable description of this csrf protection policy.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param description set the description.
*/
public void setDescription(String description) {
this.description = description;
}
/**
* This is the getter method this will return the attribute value.
* The name of this csrf protection policy.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return name
*/
public String getName() {
return name;
}
/**
* This is the setter method to the attribute.
* The name of this csrf protection policy.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param name set the name.
*/
public void setName(String name) {
this.name = name;
}
/**
* This is the getter method this will return the attribute value.
* Rules to control which requests undergo csrf protection.if the client's request doesn't match with any rules matchtarget, bypass_csrf action is
* applied.
* Field introduced in 30.2.1.
* Minimum of 1 items required.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return rules
*/
public List getRules() {
return rules;
}
/**
* This is the setter method. this will set the rules
* Rules to control which requests undergo csrf protection.if the client's request doesn't match with any rules matchtarget, bypass_csrf action is
* applied.
* Field introduced in 30.2.1.
* Minimum of 1 items required.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return rules
*/
public void setRules(List rules) {
this.rules = rules;
}
/**
* This is the setter method this will set the rules
* Rules to control which requests undergo csrf protection.if the client's request doesn't match with any rules matchtarget, bypass_csrf action is
* applied.
* Field introduced in 30.2.1.
* Minimum of 1 items required.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return rules
*/
public CSRFPolicy addRulesItem(CSRFRule rulesItem) {
if (this.rules == null) {
this.rules = new ArrayList();
}
this.rules.add(rulesItem);
return this;
}
/**
* This is the getter method this will return the attribute value.
* The unique identifier of the tenant to which this policy belongs.
* It is a reference to an object of type tenant.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return tenantRef
*/
public String getTenantRef() {
return tenantRef;
}
/**
* This is the setter method to the attribute.
* The unique identifier of the tenant to which this policy belongs.
* It is a reference to an object of type tenant.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param tenantRef set the tenantRef.
*/
public void setTenantRef(String tenantRef) {
this.tenantRef = tenantRef;
}
/**
* This is the getter method this will return the attribute value.
* Csrf token is rotated when this time expires.
* Tokens will be acceptable for twice the token_validity_time time.
* Allowed values are 10-1440.
* Special values are 0- unlimited.
* Field introduced in 30.2.1.
* Unit is min.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as 360.
* @return tokenValidityTimeMin
*/
public Integer getTokenValidityTimeMin() {
return tokenValidityTimeMin;
}
/**
* This is the setter method to the attribute.
* Csrf token is rotated when this time expires.
* Tokens will be acceptable for twice the token_validity_time time.
* Allowed values are 10-1440.
* Special values are 0- unlimited.
* Field introduced in 30.2.1.
* Unit is min.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as 360.
* @param tokenValidityTimeMin set the tokenValidityTimeMin.
*/
public void setTokenValidityTimeMin(Integer tokenValidityTimeMin) {
this.tokenValidityTimeMin = tokenValidityTimeMin;
}
/**
* This is the getter method this will return the attribute value.
* Avi controller URL of the object.
* @return url
*/
public String getUrl() {
return url;
}
/**
* This is the setter method. this will set the url
* Avi controller URL of the object.
* @return url
*/
public void setUrl(String url) {
this.url = url;
}
/**
* This is the getter method this will return the attribute value.
* A unique identifier to this csrf protection policy.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @return uuid
*/
public String getUuid() {
return uuid;
}
/**
* This is the setter method to the attribute.
* A unique identifier to this csrf protection policy.
* Field introduced in 30.2.1.
* Allowed in enterprise edition with any value, enterprise with cloud services edition.
* Default value when not specified in API or module is interpreted by Avi Controller as null.
* @param uuid set the uuid.
*/
public void setUuid(String uuid) {
this.uuid = uuid;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CSRFPolicy objCSRFPolicy = (CSRFPolicy) o;
return Objects.equals(this.uuid, objCSRFPolicy.uuid)&&
Objects.equals(this.tenantRef, objCSRFPolicy.tenantRef)&&
Objects.equals(this.name, objCSRFPolicy.name)&&
Objects.equals(this.description, objCSRFPolicy.description)&&
Objects.equals(this.tokenValidityTimeMin, objCSRFPolicy.tokenValidityTimeMin)&&
Objects.equals(this.rules, objCSRFPolicy.rules)&&
Objects.equals(this.cookieName, objCSRFPolicy.cookieName);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CSRFPolicy {\n");
sb.append(" cookieName: ").append(toIndentedString(cookieName)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" rules: ").append(toIndentedString(rules)).append("\n");
sb.append(" tenantRef: ").append(toIndentedString(tenantRef)).append("\n");
sb.append(" tokenValidityTimeMin: ").append(toIndentedString(tokenValidityTimeMin)).append("\n");
sb.append(" uuid: ").append(toIndentedString(uuid)).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