/** * 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; import com.mozu.api.contracts.sitesettings.general.general.routing.Mapping; import com.mozu.api.contracts.sitesettings.general.general.routing.Validator; import com.mozu.api.contracts.sitesettings.general.general.routing.Route; /** * Mozu.SiteSettings.General.Contracts.General.Routing.CustomRouteSettings ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class CustomRouteSettings implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The mappings configured for the site. Mappings allow you to map the values of URL parameters to other JSON variables or to objects such as facet values. */ public HashMap<String,Mapping> mappings; public HashMap<String,Mapping> getMappings() { return this.mappings; } public void setMappings(HashMap<String,Mapping> mappings) { this.mappings = mappings; } /** * The validators configured for a site. Validators require that URL parameters meet certain conditions before considers the template a match. */ public HashMap<String,Validator> validators; public HashMap<String,Validator> getValidators() { return this.validators; } public void setValidators(HashMap<String,Validator> validators) { this.validators = validators; } /** * The routes configured for the site. Routes contain all the information necessary to match incoming URLs to a specific page in . */ protected List<Route> routes; public List<Route> getRoutes() { return this.routes; } public void setRoutes(List<Route> routes) { this.routes = routes; } }