package com.intuit.tank.script; /* * #%L * JSF Support Beans * %% * 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.util.Date; public class ScriptVO { private int id; private String name; private String productName; private String creator; private Date created; private Date modified; public ScriptVO(int id, String name, String productName, String creator, Date created, Date modified) { super(); this.id = id; this.name = name; this.productName = productName; this.creator = creator; this.created = created; this.modified = modified; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getProductName() { return productName; } public void setProductName(String productName) { this.productName = productName; } public String getCreator() { return creator; } public void setCreator(String creator) { this.creator = creator; } public Date getCreated() { return created; } public void setCreated(Date created) { this.created = created; } public Date getModified() { return modified; } public void setModified(Date modified) { this.modified = modified; } }