01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2003.09.05 at 11:10:40 PDT
06: //
07:
08: package org.jaffa.persistence.engines.jdbcengine.configservice.initdomain;
09:
10: /**
11: * Java content class for connection-factory complex type.
12: * <p>The following schema fragment specifies the expected content contained within this java content object.
13: * <p>
14: * <pre>
15: * <complexType name="connection-factory">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="param" type="{}param" maxOccurs="unbounded" minOccurs="0"/>
20: * </sequence>
21: * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
22: * </restriction>
23: * </complexContent>
24: * </complexType>
25: * </pre>
26: *
27: */
28: public interface ConnectionFactory {
29:
30: java.util.List getParam();
31:
32: java.lang.String getClassName();
33:
34: void setClassName(java.lang.String value);
35:
36: }
|