001: // @@
002: // @@
003: /*
004: * Wi.Ser Framework
005: *
006: * Version: 1.8.1, 20-September-2007
007: * Copyright (C) 2005 Dirk von der Weiden <dvdw@imail.de>
008: *
009: * This library is free software; you can redistribute it and/or
010: * modify it under the terms of the GNU Lesser General Public
011: * License as published by the Free Software Foundation; either
012: * version 2 of the License, or (at your option) any later version.
013: *
014: * This library is distributed in the hope that it will be useful,
015: * but WITHOUT ANY WARRANTY; without even the implied warranty of
016: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
017: * Lesser General Public License for more details.
018: *
019: * You should have received a copy of the GNU Lesser General Public
020: * License along with this library located in LGPL.txt in the
021: * license directory; if not, write to the
022: * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
023: * Boston, MA 02111-1307, USA.
024: *
025: * If this agreement does not cover your requirements, please contact us
026: * via email to get detailed information about the commercial license
027: * or our service offerings!
028: *
029: */
030: // @@
031: package de.ug2t.connector;
032:
033: import java.util.*;
034:
035: public interface ICoXmlParameterGetter {
036:
037: public abstract void pcmf_addSource(String xSource)
038: throws Exception;
039:
040: public abstract void pcmf_setSource(String xSource)
041: throws Exception;
042:
043: public abstract void pcmf_addSourceReNew(String xSource)
044: throws Exception;
045:
046: public abstract void pcmf_setSourceURI(String xSource)
047: throws Exception;
048:
049: public abstract void pcmf_addSourceURIReNew(String xSource)
050: throws Exception;
051:
052: public abstract void pcmf_removeSource(String xSource);
053:
054: public abstract String pcmf_getParameterString(String xSource,
055: String xCluster, String xKey);
056:
057: public abstract String pcmf_getParameterString(String xCluster,
058: String xKey);
059:
060: public abstract String pcmf_getParameterString(String xKey);
061:
062: public abstract Object pcmf_getParameter(String xSource,
063: String xCluster, String xKey);
064:
065: public abstract Object pcmf_removeParameter(String xSource,
066: String xCluster, String xKey);
067:
068: public abstract Object pcmf_setParameter(String xSource,
069: String xCluster, String xKey, Object xValue);
070:
071: public abstract Object pcmf_removeCluster(String xSource,
072: String xCluster);
073:
074: public abstract Object pcmf_addCluster(String xSource,
075: String xCluster);
076:
077: public abstract boolean pcmf_existsCluster(String xSource,
078: String xCluster);
079:
080: public abstract Object pcmf_getParameter(String xCluster,
081: String xKey);
082:
083: public abstract Object pcmf_setParameter(String xCluster,
084: String xKey, Object xValue);
085:
086: public abstract Object pcmf_getParameter(String xKey);
087:
088: public abstract Object pcmf_setParameter(String xKey, Object xValue);
089:
090: public abstract int pcmf_setRoot(String xSource, String xCluster);
091:
092: public abstract Iterator pcmf_getKeys(String xCluster);
093:
094: public abstract Iterator pcmf_getKeys(String xSource,
095: String xCluster);
096:
097: public abstract Iterator pcmf_getClusterKeys();
098:
099: public abstract Iterator pcmf_getClusterKeys(String xSource);
100:
101: public abstract void pcmf_cleanCluster(String xSource,
102: String xCluster);
103:
104: public abstract void pcmf_setActiveSource(String xSource);
105: }
|