Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.wst.wsdl.ui/src-asd-wsdl11/org/eclipse/wst/wsdl/ui/internal/filter/HttpExtensiblityElementFilter.java')
-rw-r--r--bundles/org.eclipse.wst.wsdl.ui/src-asd-wsdl11/org/eclipse/wst/wsdl/ui/internal/filter/HttpExtensiblityElementFilter.java50
1 files changed, 0 insertions, 50 deletions
diff --git a/bundles/org.eclipse.wst.wsdl.ui/src-asd-wsdl11/org/eclipse/wst/wsdl/ui/internal/filter/HttpExtensiblityElementFilter.java b/bundles/org.eclipse.wst.wsdl.ui/src-asd-wsdl11/org/eclipse/wst/wsdl/ui/internal/filter/HttpExtensiblityElementFilter.java
deleted file mode 100644
index f576441c6..000000000
--- a/bundles/org.eclipse.wst.wsdl.ui/src-asd-wsdl11/org/eclipse/wst/wsdl/ui/internal/filter/HttpExtensiblityElementFilter.java
+++ /dev/null
@@ -1,50 +0,0 @@
-/*******************************************************************************
- * 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.ui.internal.filter;
-
-import org.eclipse.wst.wsdl.binding.http.internal.util.HTTPConstants;
-import org.eclipse.wst.wsdl.util.WSDLConstants;
-import org.w3c.dom.Element;
-
-
-public class HttpExtensiblityElementFilter extends AbstractExtensibilityElementFilter
-{
- public boolean isValidContext(Element parentElement, String localName)
- {
- boolean result = false;
-
- if (parentElement != null && WSDLConstants.WSDL_NAMESPACE_URI.equals(parentElement.getNamespaceURI()))
- {
- String parentElementName = parentElement.getLocalName();
- if (WSDLConstants.BINDING_ELEMENT_TAG.equals(parentElementName))
- {
- result = HTTPConstants.BINDING_ELEMENT_TAG.equals(localName);
- }
- else if (isWSDLBindingOperation(parentElement))
- {
- result = HTTPConstants.OPERATION_ELEMENT_TAG.equals(localName);
- }
- else if (isWSDLBindingOperation(parentElement.getParentNode()))
- {
- if (WSDLConstants.INPUT_ELEMENT_TAG.equals(parentElementName))
- {
- result = HTTPConstants.URL_ENCODED_ELEMENT_TAG.equals(localName) ||
- HTTPConstants.URL_REPLACEMENT_ELEMENT_TAG.equals(localName);
- }
- }
- else if (WSDLConstants.PORT_ELEMENT_TAG.equals(parentElementName))
- {
- result = HTTPConstants.ADDRESS_ELEMENT_TAG.equals(localName);
- }
- }
- return result;
- }
-}

Back to the top