package com.thesecretserver.service; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for UserScript complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="UserScript"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="ScriptId" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Script" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Active" type="{http://www.w3.org/2001/XMLSchema}boolean"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "UserScript", propOrder = { "scriptId", "name", "description", "script", "active" }) @XmlSeeAlso({ PowerShellUserScript.class, SshUserScript.class, SqlUserScript.class }) public abstract class UserScript { @XmlElement(name = "ScriptId") protected int scriptId; @XmlElement(name = "Name") protected String name; @XmlElement(name = "Description") protected String description; @XmlElement(name = "Script") protected String script; @XmlElement(name = "Active") protected boolean active; /** * Gets the value of the scriptId property. * */ public int getScriptId() { return scriptId; } /** * Sets the value of the scriptId property. * */ public void setScriptId(int value) { this.scriptId = 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 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 script property. * * @return * possible object is * {@link String } * */ public String getScript() { return script; } /** * Sets the value of the script property. * * @param value * allowed object is * {@link String } * */ public void setScript(String value) { this.script = value; } /** * Gets the value of the active property. * */ public boolean isActive() { return active; } /** * Sets the value of the active property. * */ public void setActive(boolean value) { this.active = value; } }