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 database 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="database">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="connection-factory" type="{}connection-factory"/>
20: * <element name="hitlistSize" type="{}hitlistSize"/>
21: * <element name="jdbcSecurityPlugin" type="{}jdbcSecurityPlugin" minOccurs="0"/>
22: * <element name="usePreparedStatement" type="{}usePreparedStatement" minOccurs="0"/>
23: * </sequence>
24: * <attribute name="engine" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
25: * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
26: * </restriction>
27: * </complexContent>
28: * </complexType>
29: * </pre>
30: *
31: */
32: public interface Database {
33:
34: org.jaffa.persistence.engines.jdbcengine.configservice.initdomain.ConnectionFactory getConnectionFactory();
35:
36: void setConnectionFactory(
37: org.jaffa.persistence.engines.jdbcengine.configservice.initdomain.ConnectionFactory value);
38:
39: org.jaffa.persistence.engines.jdbcengine.configservice.initdomain.JdbcSecurityPlugin getJdbcSecurityPlugin();
40:
41: void setJdbcSecurityPlugin(
42: org.jaffa.persistence.engines.jdbcengine.configservice.initdomain.JdbcSecurityPlugin value);
43:
44: org.jaffa.persistence.engines.jdbcengine.configservice.initdomain.HitlistSize getHitlistSize();
45:
46: void setHitlistSize(
47: org.jaffa.persistence.engines.jdbcengine.configservice.initdomain.HitlistSize value);
48:
49: java.lang.String getEngine();
50:
51: void setEngine(java.lang.String value);
52:
53: java.lang.String getName();
54:
55: void setName(java.lang.String value);
56:
57: org.jaffa.persistence.engines.jdbcengine.configservice.initdomain.UsePreparedStatement getUsePreparedStatement();
58:
59: void setUsePreparedStatement(
60: org.jaffa.persistence.engines.jdbcengine.configservice.initdomain.UsePreparedStatement value);
61:
62: }
|