All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.wst.wsdl.Operation Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2001, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.wst.wsdl;

import javax.wsdl.OperationType;

import org.eclipse.emf.common.util.EList;

/**
 * 
 * A representation of the model object 'Operation'.
 * @since 1.0
 * @ignore
 * 
 *
 * 
 * This class represents a WSDL operation element. A WSDL operation is an abstract description of an action supported by a service.
 * 
 *
 * 

* The following features are supported: *

    *
  • {@link org.eclipse.wsdl.Operation#getStyle Style}
  • *
  • {@link org.eclipse.wsdl.Operation#getName Name}
  • *
  • {@link org.eclipse.wsdl.Operation#isUndefined Undefined}
  • *
  • {@link org.eclipse.wsdl.Operation#isProxy Proxy}
  • *
  • {@link org.eclipse.wsdl.Operation#getResourceURI Resource URI}
  • *
  • {@link org.eclipse.wsdl.Operation#getEInput EInput}
  • *
  • {@link org.eclipse.wsdl.Operation#getEOutput EOutput}
  • *
  • {@link org.eclipse.wsdl.Operation#getEFaults EFaults}
  • *
  • {@link org.eclipse.wsdl.Operation#getEParameterOrdering EParameter Ordering}
  • *
*

* * @see org.eclipse.wsdl.WSDLPackage#getOperation() * @model * @generated */ public interface Operation extends WSDLElement, javax.wsdl.Operation{ /** * Returns the value of the 'Style' attribute. * *

* If the meaning of the 'Style' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Style' attribute. * @see #setStyle(OperationType) * @see org.eclipse.wsdl.WSDLPackage#getOperation_Style() * @model dataType="org.eclipse.wsdl.OperationType" * @generated */ OperationType getStyle(); /** * Sets the value of the '{@link org.eclipse.wsdl.Operation#getStyle Style}' attribute. * * * @param value the new value of the 'Style' attribute. * @see #getStyle() * @generated */ void setStyle(OperationType value); /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.eclipse.wsdl.WSDLPackage#getOperation_Name() * @model * @generated */ String getName(); /** * Sets the value of the '{@link org.eclipse.wsdl.Operation#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Undefined' attribute. * *

* If the meaning of the 'Undefined' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Undefined' attribute. * @see #setUndefined(boolean) * @see org.eclipse.wsdl.WSDLPackage#getOperation_Undefined() * @model * @generated */ boolean isUndefined(); /** * Sets the value of the '{@link org.eclipse.wsdl.Operation#isUndefined Undefined}' attribute. * * * @param value the new value of the 'Undefined' attribute. * @see #isUndefined() * @generated */ void setUndefined(boolean value); /** * Returns the value of the 'EInput' containment reference. * *

* If the meaning of the 'EInput' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'EInput' containment reference. * @see #setEInput(Input) * @see org.eclipse.wsdl.WSDLPackage#getOperation_EInput() * @model containment="true" * @generated */ Input getEInput(); /** * Sets the value of the '{@link org.eclipse.wsdl.Operation#getEInput EInput}' containment reference. * * * @param value the new value of the 'EInput' containment reference. * @see #getEInput() * @generated */ void setEInput(Input value); /** * Returns the value of the 'EOutput' containment reference. * *

* If the meaning of the 'EOutput' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'EOutput' containment reference. * @see #setEOutput(Output) * @see org.eclipse.wsdl.WSDLPackage#getOperation_EOutput() * @model containment="true" * @generated */ Output getEOutput(); /** * Sets the value of the '{@link org.eclipse.wsdl.Operation#getEOutput EOutput}' containment reference. * * * @param value the new value of the 'EOutput' containment reference. * @see #getEOutput() * @generated */ void setEOutput(Output value); /** * Returns the value of the 'EFaults' containment reference list. * The list contents are of type {@link org.eclipse.wsdl.Fault}. * *

* If the meaning of the 'EFaults' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'EFaults' containment reference list. * @see org.eclipse.wsdl.WSDLPackage#getOperation_EFaults() * @model type="org.eclipse.wsdl.Fault" containment="true" * @generated */ EList getEFaults(); /** * Returns the value of the 'EParameter Ordering' reference list. * The list contents are of type {@link org.eclipse.wsdl.Part}. * *

* If the meaning of the 'EParameter Ordering' reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'EParameter Ordering' reference list. * @see org.eclipse.wsdl.WSDLPackage#getOperation_EParameterOrdering() * @model type="org.eclipse.wsdl.Part" * @generated */ EList getEParameterOrdering(); } // Operation




© 2015 - 2025 Weber Informatics LLC | Privacy Policy