01: /**
02: * RSS framework and reader
03: * Copyright (C) 2004 Christian Robert
04: *
05: * This library is free software; you can redistribute it and/or
06: * modify it under the terms of the GNU Lesser General Public
07: * License as published by the Free Software Foundation; either
08: * version 2.1 of the License, or (at your option) any later version.
09: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library; if not, write to the Free Software
17: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18: */package org.jperdian.rss2.dom;
19:
20: import java.io.Serializable;
21:
22: /**
23: * <p>Implementation of the RSS <tt>cloud</tt> element.</p>
24: *
25: * <p>Note: The <tt>cloud</tt> processing is not supported yet</p>
26: *
27: * @author Christian Robert
28: */
29:
30: public class RssCloud implements Serializable {
31:
32: private String myDomain = "";
33: private int myPort = 80;
34: private String myPath = "";
35: private String myRegisterProcedure = "";
36: private String myProtocol = "";
37:
38: // --------------------------------------------------------------------------
39: // -- Property access methods ---------------------------------------------
40: // --------------------------------------------------------------------------
41:
42: public String getDomain() {
43: return myDomain;
44: }
45:
46: public void setDomain(String domain) {
47: this .myDomain = domain;
48: }
49:
50: public String getPath() {
51: return this .myPath;
52: }
53:
54: public void setPath(String path) {
55: this .myPath = path;
56: }
57:
58: public int getPort() {
59: return this .myPort;
60: }
61:
62: public void setPort(int port) {
63: this .myPort = port;
64: }
65:
66: public String getProtocol() {
67: return this .myProtocol;
68: }
69:
70: public void setProtocol(String protocol) {
71: this .myProtocol = protocol;
72: }
73:
74: public String getRegisterProcedure() {
75: return this .myRegisterProcedure;
76: }
77:
78: public void setRegisterProcedure(String registerProcedure) {
79: this.myRegisterProcedure = registerProcedure;
80: }
81:
82: }
|