01: /**
02: * JOnAS: Java(TM) Open Application Server
03: * Copyright (C) 2005 Bull S.A.
04: * Contact: jonas-team@objectweb.org
05: *
06: * This library is free software; you can redistribute it and/or
07: *
08: * modify it under the terms of the GNU Lesser General Public
09: * License as published by the Free Software Foundation; either
10: * version 2.1 of the License, or 1any later version.
11: *
12: * This library is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * Lesser General Public License for more details.
16: *
17: * You should have received a copy of the GNU Lesser General Public
18: * License along with this library; if not, write to the Free Software
19: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20: * USA
21: *
22: * --------------------------------------------------------------------------
23: * $Id: Location.java 7757 2005-12-08 15:24:55Z danesa $
24: * --------------------------------------------------------------------------
25: */package org.objectweb.jonas_domain.xml;
26:
27: import org.objectweb.jonas_lib.deployment.xml.AbsElement;
28: import org.objectweb.jonas_lib.deployment.xml.JLinkedList;
29:
30: /**
31: *
32: * @author Adriana Danes
33: *
34: * A location element is composed of a list of urls, where a url is
35: * <url>the-string-representation-of-the-url</url>
36: */
37: public class Location extends AbsElement {
38:
39: private JLinkedList urlList = null;
40:
41: /**
42: * Constructor
43: */
44: public Location() {
45: super ();
46: urlList = new JLinkedList("url");
47: }
48:
49: /**
50: * @return Returns the urlList.
51: */
52: public JLinkedList getUrlList() {
53: return urlList;
54: }
55:
56: /**
57: * Add a url to the urlList.
58: * @param url
59: */
60: public void addUrl(String url) {
61: urlList.add(url);
62: }
63:
64: /**
65: * Represents this element by it's XML description.
66: * @param indent use this indent for prexifing XML representation.
67: * @return the XML description of this object.
68: */
69: public String toXML(int indent) {
70: StringBuffer sb = new StringBuffer();
71: sb.append(indent(indent));
72: sb.append("<location>\n");
73:
74: indent += 2;
75:
76: // principal-name
77: sb.append(urlList.toXML(indent));
78:
79: indent -= 2;
80: sb.append(indent(indent));
81: sb.append("</location>\n");
82:
83: return sb.toString();
84: }
85: }
|