package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSStoredProcedure complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSStoredProcedure"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="procedure" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="refreshCache" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSStoredProcedure", propOrder = { "description", "name", "procedure", "refreshCache" }) public class WSStoredProcedure { protected String description; protected String name; protected String procedure; protected Boolean refreshCache; /** * Default no-arg constructor * */ public WSStoredProcedure() { super(); } /** * Fully-initialising value constructor * */ public WSStoredProcedure(final String description, final String name, final String procedure, final Boolean refreshCache) { this.description = description; this.name = name; this.procedure = procedure; this.refreshCache = refreshCache; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the procedure property. * * @return * possible object is * {@link String } * */ public String getProcedure() { return procedure; } /** * Sets the value of the procedure property. * * @param value * allowed object is * {@link String } * */ public void setProcedure(String value) { this.procedure = value; } /** * Gets the value of the refreshCache property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRefreshCache() { return refreshCache; } /** * Sets the value of the refreshCache property. * * @param value * allowed object is * {@link Boolean } * */ public void setRefreshCache(Boolean value) { this.refreshCache = value; } }