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.12.18 at 12:29:17 PST
06: //
07:
08: package org.jaffa.components.navigation.domain;
09:
10: /**
11: * Java content class for url-action 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="url-action">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="url">
20: * <complexType>
21: * <simpleContent>
22: * <extension base="<http://www.w3.org/2001/XMLSchema>string">
23: * <attribute name="append-final" type="{http://www.w3.org/2001/XMLSchema}boolean" />
24: * </extension>
25: * </simpleContent>
26: * </complexType>
27: * </element>
28: * <element name="requires-component-access" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
29: * <element name="requires-function-access" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
30: * </sequence>
31: * </restriction>
32: * </complexContent>
33: * </complexType>
34: * </pre>
35: *
36: */
37: public interface UrlAction {
38:
39: java.util.List getRequiresComponentAccess();
40:
41: java.util.List getRequiresFunctionAccess();
42:
43: org.jaffa.components.navigation.domain.UrlAction.UrlType getUrl();
44:
45: void setUrl(
46: org.jaffa.components.navigation.domain.UrlAction.UrlType value);
47:
48: /**
49: * Java content class for annonymous complex type.
50: * <p>The following schema fragment specifies the expected content contained within this java content object.
51: * <p>
52: * <pre>
53: * <complexType>
54: * <simpleContent>
55: * <extension base="<http://www.w3.org/2001/XMLSchema>string">
56: * <attribute name="append-final" type="{http://www.w3.org/2001/XMLSchema}boolean" />
57: * </extension>
58: * </simpleContent>
59: * </complexType>
60: * </pre>
61: *
62: */
63: public interface UrlType {
64:
65: java.lang.String getValue();
66:
67: void setValue(java.lang.String value);
68:
69: boolean isAppendFinal();
70:
71: void setAppendFinal(boolean value);
72:
73: }
74:
75: }
|