/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.sitesettings.general.general.routing; import java.util.List; import java.util.HashMap; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; @JsonIgnoreProperties(ignoreUnknown = true) public class Validator implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; protected String attributeFQN; public String getAttributeFQN() { return this.attributeFQN; } public void setAttributeFQN(String attributeFQN) { this.attributeFQN = attributeFQN; } protected String docId; public String getDocId() { return this.docId; } public void setDocId(String docId) { this.docId = docId; } protected String field; public String getField() { return this.field; } public void setField(String field) { this.field = field; } protected String listFqn; public String getListFqn() { return this.listFqn; } public void setListFqn(String listFqn) { this.listFqn = listFqn; } protected String pattern; public String getPattern() { return this.pattern; } public void setPattern(String pattern) { this.pattern = pattern; } protected String type; public String getType() { return this.type; } public void setType(String type) { this.type = type; } protected List<String> values; public List<String> getValues() { return this.values; } public void setValues(List<String> values) { this.values = values; } }