001: /**
002: * JOnAS: Java(TM) Open Application Server
003: * Copyright (C) 1999 Bull S.A.
004: * Contact: jonas-team@objectweb.org
005: *
006: * This library is free software; you can redistribute it and/or
007: *
008: * modify it under the terms of the GNU Lesser General Public
009: * License as published by the Free Software Foundation; either
010: * version 2.1 of the License, or 1any later version.
011: *
012: * This library is distributed in the hope that it will be useful,
013: * but WITHOUT ANY WARRANTY; without even the implied warranty of
014: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015: * Lesser General Public License for more details.
016: *
017: * You should have received a copy of the GNU Lesser General Public
018: * License along with this library; if not, write to the Free Software
019: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
020: * USA
021: *
022: * Initial developer: Florent BENOIT
023: * --------------------------------------------------------------------------
024: * $Id: JdbcConnParams.java 3673 2003-11-11 20:03:28Z ehardesty $
025: * --------------------------------------------------------------------------
026: */package org.objectweb.jonas_rar.deployment.xml;
027:
028: import org.objectweb.jonas_lib.deployment.xml.AbsElement;
029:
030: /**
031: * This class defines the implementation of the element jdbc-conn-params
032: *
033: * @author Florent Benoit
034: */
035:
036: public class JdbcConnParams extends AbsElement {
037:
038: /**
039: * jdbc-check-level
040: */
041: private String jdbcCheckLevel = null;
042:
043: /**
044: * jdbc-test-statement
045: */
046: private String jdbcTestStatement = null;
047:
048: /**
049: * Constructor
050: */
051: public JdbcConnParams() {
052: super ();
053: }
054:
055: /**
056: * Gets the jdbc-check-level
057: * @return the jdbc-check-level
058: */
059: public String getJdbcCheckLevel() {
060: return jdbcCheckLevel;
061: }
062:
063: /**
064: * Set the jdbc-check-level
065: * @param jdbcCheckLevel jdbcCheckLevel
066: */
067: public void setJdbcCheckLevel(String jdbcCheckLevel) {
068: this .jdbcCheckLevel = jdbcCheckLevel;
069: }
070:
071: /**
072: * Gets the jdbc-test-statement
073: * @return the jdbc-test-statement
074: */
075: public String getJdbcTestStatement() {
076: return jdbcTestStatement;
077: }
078:
079: /**
080: * Set the jdbc-test-statement
081: * @param jdbcTestStatement jdbcTestStatement
082: */
083: public void setJdbcTestStatement(String jdbcTestStatement) {
084: this .jdbcTestStatement = jdbcTestStatement;
085: }
086:
087: /**
088: * Represents this element by it's XML description.
089: * @param indent use this indent for prefixing XML representation.
090: * @return the XML description of this object.
091: */
092: public String toXML(int indent) {
093: StringBuffer sb = new StringBuffer();
094: sb.append(indent(indent));
095: sb.append("<jdbc-conn-params>\n");
096:
097: indent += 2;
098:
099: // jdbc-check-level
100: sb
101: .append(xmlElement(jdbcCheckLevel, "jdbc-check-level",
102: indent));
103: // jdbc-test-statement
104: sb.append(xmlElement(jdbcTestStatement, "jdbc-test-statement",
105: indent));
106: indent -= 2;
107: sb.append(indent(indent));
108: sb.append("</jdbc-conn-params>\n");
109:
110: return sb.toString();
111: }
112: }
|