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 component-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="component-action">
16: * <complexContent>
17: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
18: * <sequence>
19: * <element name="component-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
20: * <element name="param" maxOccurs="unbounded" minOccurs="0">
21: * <complexType>
22: * <complexContent>
23: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
24: * <attribute name="value" 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: * </element>
30: * <element name="url-suffix" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31: * </sequence>
32: * </restriction>
33: * </complexContent>
34: * </complexType>
35: * </pre>
36: *
37: */
38: public interface ComponentAction {
39:
40: java.lang.String getComponentName();
41:
42: void setComponentName(java.lang.String value);
43:
44: java.lang.String getUrlSuffix();
45:
46: void setUrlSuffix(java.lang.String value);
47:
48: java.util.List getParam();
49:
50: /**
51: * Java content class for annonymous complex type.
52: * <p>The following schema fragment specifies the expected content contained within this java content object.
53: * <p>
54: * <pre>
55: * <complexType>
56: * <complexContent>
57: * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
58: * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
59: * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
60: * </restriction>
61: * </complexContent>
62: * </complexType>
63: * </pre>
64: *
65: */
66: public interface ParamType {
67:
68: java.lang.String getValue();
69:
70: void setValue(java.lang.String value);
71:
72: java.lang.String getName();
73:
74: void setName(java.lang.String value);
75:
76: }
77:
78: }
|