/******************************************************************************* * Copyright (c) 2001, 2009 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.binding.http; import org.eclipse.wst.wsdl.ExtensibilityElement; /** * * A representation of the model object 'Binding'. * * *

* The following features are supported: *

*

* * @see org.eclipse.wst.wsdl.binding.http.HTTPPackage#getHTTPBinding() * @model superTypes="org.eclipse.wst.wsdl.ExtensibilityElement org.eclipse.wst.wsdl.binding.http.IHTTPBinding" * @generated */ public interface HTTPBinding extends ExtensibilityElement, javax.wsdl.extensions.http.HTTPBinding { /** * Returns the value of the 'Verb' attribute. * *

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

* * @return the value of the 'Verb' attribute. * @see #setVerb(String) * @see org.eclipse.wst.wsdl.binding.http.HTTPPackage#getHTTPBinding_Verb() * @model * @generated */ String getVerb(); /** * Sets the value of the '{@link org.eclipse.wst.wsdl.binding.http.HTTPBinding#getVerb Verb}' attribute. * * * @param value the new value of the 'Verb' attribute. * @see #getVerb() * @generated */ void setVerb(String value); } // HTTPBinding