/** * Copyright 2011 Intuit Inc. All Rights Reserved */ package com.intuit.tank.api.model.v1.script; /* * #%L * Script Rest API * %% * Copyright (C) 2011 - 2015 Intuit Inc. * %% * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * #L% */ import java.io.Serializable; import java.util.Date; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * ExternalScriptTO * * @author dangleton * */ @XmlRootElement(name = "externalScript", namespace = Namespace.NAMESPACE_V1) @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExternalScriptTO", namespace = Namespace.NAMESPACE_V1, propOrder = { "id", "created", "modified", "creator", "name", "productName", "script" }) public class ExternalScriptTO implements Serializable { private static final long serialVersionUID = 1L; @XmlElement(name = "id", namespace = Namespace.NAMESPACE_V1, required = false, nillable = false) private int id; @XmlElement(name = "created", namespace = Namespace.NAMESPACE_V1, required = false, nillable = false) private Date created; @XmlElement(name = "modified", namespace = Namespace.NAMESPACE_V1, required = false, nillable = false) private Date modified; @XmlElement(name = "creator", namespace = Namespace.NAMESPACE_V1, required = false, nillable = false) private String creator; @XmlElement(name = "name", namespace = Namespace.NAMESPACE_V1, required = false, nillable = false) private String name; @XmlElement(name = "productName", namespace = Namespace.NAMESPACE_V1, required = false, nillable = false) private String productName; @XmlElement(name = "script", namespace = Namespace.NAMESPACE_V1, required = false, nillable = false) private String script; /** * @return the id */ public int getId() { return id; } /** * @param id * the id to set */ public void setId(int id) { this.id = id; } /** * @return the created */ public Date getCreated() { return created; } /** * @param created * the created to set */ public void setCreated(Date created) { this.created = created; } /** * @return the modified */ public Date getModified() { return modified; } /** * @param modified * the modified to set */ public void setModified(Date modified) { this.modified = modified; } /** * @return the creator */ public String getCreator() { return creator; } /** * @param creator * the creator to set */ public void setCreator(String creator) { this.creator = creator; } /** * @return the name */ public String getName() { return name; } /** * @param name * the name to set */ public void setName(String name) { this.name = name; } /** * @return the productName */ public String getProductName() { return productName; } /** * @param productName * the productName to set */ public void setProductName(String productName) { this.productName = productName; } /** * @return the script */ public String getScript() { return script; } /** * @param script * the script to set */ public void setScript(String script) { this.script = script; } /** * @{inheritDoc */ @Override public String toString() { return name + " (id=" + id + ")"; } }