com.mozu.api.contracts.installedapplications.TenantExtensions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mozu-api-core Show documentation
Show all versions of mozu-api-core Show documentation
Mozu Java is a SDK that enables you to create robust Java applications that integrate with the Mozu platform
/**
* 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.installedapplications;
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.installedapplications.CustomFunctionsForAction;
import com.mozu.api.contracts.installedapplications.ExtensionConfiguration;
/**
* Mozu.InstalledApplications.Contracts.TenantExtensions ApiType DOCUMENT_HERE
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class TenantExtensions implements Serializable
{
// Default Serial Version UID
private static final long serialVersionUID = 1L;
/**
* The priority level to assign to application logs. Possible values mirror Apache's log4net: "all", "debug", "info", "warn", "error", "fatal", and "off".
*/
protected String defaultLogLevel;
public String getDefaultLogLevel() {
return this.defaultLogLevel;
}
public void setDefaultLogLevel(String defaultLogLevel) {
this.defaultLogLevel = defaultLogLevel;
}
/**
* The list of actions configured for the site.
*/
protected List actions;
public List getActions() {
return this.actions;
}
public void setActions(List actions) {
this.actions = actions;
}
/**
* An array of settings that apply to all actions within the application.
*/
protected List configurations;
public List getConfigurations() {
return this.configurations;
}
public void setConfigurations(List configurations) {
this.configurations = configurations;
}
}