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.04.17 at 03:04:48 PDT
06: //
07:
08: package org.jaffa.tools.loadtest.domain;
09:
10: /**
11: * Java content class for log-on 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="log-on">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="class-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
20: * <element name="webapp-root" type="{http://www.w3.org/2001/XMLSchema}string"/>
21: * <element name="logged-on-title" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22: * <element name="users" type="{}users"/>
23: * </sequence>
24: * </restriction>
25: * </complexContent>
26: * </complexType>
27: * </pre>
28: *
29: */
30: public interface LogOn {
31:
32: java.lang.String getLoggedOnTitle();
33:
34: void setLoggedOnTitle(java.lang.String value);
35:
36: java.lang.String getWebappRoot();
37:
38: void setWebappRoot(java.lang.String value);
39:
40: org.jaffa.tools.loadtest.domain.Users getUsers();
41:
42: void setUsers(org.jaffa.tools.loadtest.domain.Users value);
43:
44: java.lang.String getClassName();
45:
46: void setClassName(java.lang.String value);
47:
48: }
|