/* * Copyright (C) 2005-2012 BetaCONCEPT Limited * * This file is part of Astroboa. * * Astroboa is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Astroboa 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Astroboa. If not, see <http://www.gnu.org/licenses/>. */ package org.betaconceptframework.astroboa.console.jsf.clipboard; /** * @author Gregory Chomatas (gchomatas@betaconcept.com) * @author Savvas Triantafyllou (striantafyllou@betaconcept.com) * */ public class ContentObjectUrlItem { /*The object id */ private String id; /*The object system name */ private String systemName; /*The object Title */ private String title; /*The object type */ private String type; /*The localized label of object type */ private String typeLabel; /*The Resource API URL that returns the object as XML or JSON, or the portal-api URL that returns the object as HTML or PDF */ private String URL; /* The type of output that is generated by the URL, i.e. HTML, PDF, XML, JSON */ private URLOutputType urlOutputType; public String getId() { return id; } public void setId(String id) { this.id = id; } public String getSystemName() { return systemName; } public void setSystemName(String systemName) { this.systemName = systemName; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getTypeLabel() { return typeLabel; } public void setTypeLabel(String typeLabel) { this.typeLabel = typeLabel; } public String getURL() { return URL; } public void setURL(String uRL) { URL = uRL; } public URLOutputType getUrlOutputType() { return urlOutputType; } public void setUrlOutputType(URLOutputType urlOutputType) { this.urlOutputType = urlOutputType; } }