Package org.apache.woden.wsdl20

Examples of org.apache.woden.wsdl20.WSDLComponent


                }
                return null;   // can't go any further without the wsdl
            }
            Service[] services = description.getServices();
            for (int i = 0; i < services.length; i++) {
                Service service = services[i];
                // set the serviceName on the parent to setup call to populateService
                serviceName = service.getName();
                this.axisService = new AxisService();
                    AxisService retAxisService = populateService();
                    if (retAxisService != null) {
                        axisServices.add(retAxisService);
                    } // end if axisService was returned
View Full Code Here


  // If no binding has been specified this assertion does not apply.
  if(binding == null)
    return true;
 
  Interface bindingInterface = binding.getInterface();
  WSDLComponent parent = endpoint.getParent();
  if(parent != null)
  {
    Service service = (Service)parent;
    Interface serviceInterface = service.getInterface();
   
View Full Code Here

        {
            return ((BindingImpl)wsdlComp).getDescriptionComponent();
        }
        else
        {
            WSDLComponent parentComp = ((NestedComponent)wsdlComp).getParent();
            return getDescriptionComponent(parentComp);
        }
    }
View Full Code Here

     */
    protected boolean containsComponent(WSDLComponent comp, List components)
    {
        for(Iterator i=components.iterator(); i.hasNext(); )
        {
            WSDLComponent tempComp = (WSDLComponent)i.next();
            if(tempComp.equals(comp)) {
                return true;
            }
        }
        return false;
    }
View Full Code Here

        {
            return ((BindingImpl)wsdlComp).getDescriptionComponent();
        }
        else
        {
            WSDLComponent parentComp = ((NestedComponent)wsdlComp).getParent();
            return getDescriptionComponent(parentComp);
        }
    }
View Full Code Here

        {
            return ((BindingImpl)wsdlComp).getDescriptionComponent();
        }
        else
        {
            WSDLComponent parentComp = ((NestedComponent)wsdlComp).getParent();
            return getDescriptionComponent(parentComp);
        }
    }
View Full Code Here

     */
    protected boolean containsComponent(WSDLComponent comp, List components)
    {
        for(Iterator i=components.iterator(); i.hasNext(); )
        {
            WSDLComponent tempComp = (WSDLComponent)i.next();
            if(tempComp.isEquivalentTo(comp)) {
                return true;
            }
        }
        return false;
    }
View Full Code Here

  // If no binding has been specified this assertion does not apply.
  if(binding == null)
    return true;
 
  Interface bindingInterface = binding.getInterface();
  WSDLComponent parent = endpoint.getParent();
  if(parent != null)
  {
    Service service = (Service)parent;
    Interface serviceInterface = service.getInterface();
   
View Full Code Here

                return null;
            }

            ExtensionRegistry extReg = fWsdlContext.extensionRegistry;

            ExtensionDeserializer extDS = extReg.queryDeserializer(parentType, elementType);

            return extDS.unmarshall(parentType, parent, elementType, el, desc, extReg);
        }
        catch (WSDLException e)
        {
            if (e.getLocation() == null)
            {
View Full Code Here

  protected Object convert(XMLElement ownerEl, String attrValue)
      throws WSDLException {

    // TODO: define correct error numbers

    HTTPAuthenticationScheme scheme = null;

    if (attrValue == null) {
      setValid(false);
      getErrorReporter().reportError(new ErrorLocatorImpl(), // TODO
          // line&col
View Full Code Here

TOP

Related Classes of org.apache.woden.wsdl20.WSDLComponent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.