01: /**
02: * <copyright>
03: * </copyright>
04: *
05: * $Id: HTTPType.java 7522 2007-09-12 22:00:10Z saul.farber $
06: */package net.opengis.ows;
07:
08: import org.eclipse.emf.common.util.EList;
09:
10: import org.eclipse.emf.ecore.EObject;
11:
12: import org.eclipse.emf.ecore.util.FeatureMap;
13:
14: /**
15: * <!-- begin-user-doc -->
16: * A representation of the model object '<em><b>HTTP Type</b></em>'.
17: * <!-- end-user-doc -->
18: *
19: * <p>
20: * The following features are supported:
21: * <ul>
22: * <li>{@link net.opengis.ows.HTTPType#getGroup <em>Group</em>}</li>
23: * <li>{@link net.opengis.ows.HTTPType#getGet <em>Get</em>}</li>
24: * <li>{@link net.opengis.ows.HTTPType#getPost <em>Post</em>}</li>
25: * </ul>
26: * </p>
27: *
28: * @see net.opengis.ows.OwsPackage#getHTTPType()
29: * @model extendedMetaData="name='HTTP_._type' kind='elementOnly'"
30: * @generated
31: */
32: public interface HTTPType extends EObject {
33: /**
34: * Returns the value of the '<em><b>Group</b></em>' attribute list.
35: * The list contents are of type {@link org.eclipse.emf.ecore.util.FeatureMap.Entry}.
36: * <!-- begin-user-doc -->
37: * <p>
38: * If the meaning of the '<em>Group</em>' attribute list isn't clear,
39: * there really should be more of a description here...
40: * </p>
41: * <!-- end-user-doc -->
42: * @return the value of the '<em>Group</em>' attribute list.
43: * @see net.opengis.ows.OwsPackage#getHTTPType_Group()
44: * @model unique="false" dataType="org.eclipse.emf.ecore.EFeatureMapEntry" many="true"
45: * extendedMetaData="kind='group' name='group:0'"
46: * @generated
47: */
48: FeatureMap getGroup();
49:
50: /**
51: * Returns the value of the '<em><b>Get</b></em>' containment reference list.
52: * The list contents are of type {@link net.opengis.ows.RequestMethodType}.
53: * <!-- begin-user-doc -->
54: * <!-- end-user-doc -->
55: * <!-- begin-model-doc -->
56: * Connect point URL prefix and any constraints for the HTTP "Get" request method for this operation request.
57: * <!-- end-model-doc -->
58: * @return the value of the '<em>Get</em>' containment reference list.
59: * @see net.opengis.ows.OwsPackage#getHTTPType_Get()
60: * @model type="net.opengis.ows.RequestMethodType" containment="true" transient="true" volatile="true" derived="true"
61: * extendedMetaData="kind='element' name='Get' namespace='##targetNamespace' group='#group:0'"
62: * @generated
63: */
64: EList getGet();
65:
66: /**
67: * Returns the value of the '<em><b>Post</b></em>' containment reference list.
68: * The list contents are of type {@link net.opengis.ows.RequestMethodType}.
69: * <!-- begin-user-doc -->
70: * <!-- end-user-doc -->
71: * <!-- begin-model-doc -->
72: * Connect point URL and any constraints for the HTTP "Post" request method for this operation request.
73: * <!-- end-model-doc -->
74: * @return the value of the '<em>Post</em>' containment reference list.
75: * @see net.opengis.ows.OwsPackage#getHTTPType_Post()
76: * @model type="net.opengis.ows.RequestMethodType" containment="true" transient="true" volatile="true" derived="true"
77: * extendedMetaData="kind='element' name='Post' namespace='##targetNamespace' group='#group:0'"
78: * @generated
79: */
80: EList getPost();
81:
82: } // HTTPType
|