/* * Created on 25.11.2003 * * (c) Stabsstelle IKT-Strategie des Bundes */ package test.at.gv.egovernment.moa.spss.slinterface; /** * @author Gregor Karlinger (mailto:gregor.karlinger@cio.gv.at) */ public class DataURLBean { String title_; String contentType_; String content_; public DataURLBean() { super(); title_="unknown"; contentType_="unknown"; content_="unknown"; } public DataURLBean(String title, String contentType, String content) { title_ = title; contentType_ = contentType; content_ = content; } public String getTitle() { return title_; } public String getContentType() { return contentType_; } public String getContent() { return content_; } }