/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License, version 2 as published by the Free Software * Foundation. * * You should have received a copy of the GNU General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/gpl-2.0.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * * Copyright 2006 - 2013 Pentaho Corporation. All rights reserved. */ package org.pentaho.platform.repository2.unified.webservices; import javax.xml.bind.annotation.XmlRootElement; import java.io.Serializable; @XmlRootElement public class ExecutableFileTypeDto implements Serializable { private static final long serialVersionUID = -7235228645953482785L; private String description; private String extension; private String title; private boolean canEdit; private boolean canSchedule; public String getDescription() { return description; } public void setDescription( String description ) { this.description = description; } public String getExtension() { return extension; } public void setExtension( String extension ) { this.extension = extension; } public String getTitle() { return title; } public void setTitle( String title ) { this.title = title; } public boolean isCanEdit() { return canEdit; } public void setCanEdit( boolean canEdit ) { this.canEdit = canEdit; } public boolean isCanSchedule() { return canSchedule; } public void setCanSchedule( boolean canSchedule ) { this.canSchedule = canSchedule; } }