Package org.eclipse.wst.wsdl

Examples of org.eclipse.wst.wsdl.PortType


     * Customizes {@link #getOperationGen()} to handle the case where the port type is not specified.
     * @customized
     */
    public Operation getOperation() {
        if (operation == null && operationName != null) {
            PortType portType = getPortType();
            if (portType != null) {
                // Create an operation proxy with the deserialized operation name.
                operation = new OperationProxy(eResource().getURI(), portType, operationName);
                operationName = null;
            } else {
View Full Code Here


     * Customizes {@link #getOperationGen()} to handle the case where the port type is not specified.
     * @customized
     */
    public Operation getOperation() {
        if (operation == null && operationName != null) {
            PortType portType = getPortType();
            if (portType != null) {
                // Create an operation proxy with the deserialized operation name.
                operation = new OperationProxy(eResource().getURI(), portType, operationName);
                operationName = null;
            }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setPortType(PortType newPortType) {
    PortType oldPortType = portType;
    portType = newPortType;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, BPELPackage.ON_EVENT__PORT_TYPE, oldPortType, portType));
  }
View Full Code Here

   * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
   * @generated
   */
  public void setPortType(PortType newPortType) {
    PortType oldPortType = portType;
    portType = newPortType;
    if (eNotificationRequired())
      eNotify(new ENotificationImpl(this, Notification.SET, BPELPackage.ON_MESSAGE__PORT_TYPE, oldPortType, portType));
  }
View Full Code Here

     * Customizes {@link #getOperationGen()} to handle the case where the port type is not specified.
     * @generated NOT
     */
    public Operation getOperation() {
        if (operation == null && operationName != null) {
            PortType portType = getPortType();
            if (portType != null) {
                // Create an operation proxy with the deserialized operation name.
                operation = new OperationProxy(eResource().getURI(), portType, operationName);
                operationName = null;
            }
View Full Code Here

  /**
   * @customized
   */
  public Object getPortType() {
    if (portType instanceof PortType && ((PortType)portType).eIsProxy()) {
      PortType oldPortType = (PortType)portType;
      portType = (PortType)eResolveProxy((InternalEObject)portType);
      if (portType != oldPortType) {
        if (eNotificationRequired())
          eNotify(new ENotificationImpl(this, Notification.RESOLVE, PartnerlinktypePackage.ROLE__PORT_TYPE, oldPortType, portType));
      }
View Full Code Here

        Definition definition = getEnclosingDefinition();
        if (definition != null)
        {
          QName portTypeQName = createQName(definition, element.getAttribute(PartnerlinktypeConstants.PORT_TYPE_ATTRIBUTE));
         
          PortType newPortType = null;
         
          if (portTypeQName != null) {                       
            newPortType = WSDLUtil.resolvePortType(definition, portTypeQName);
          }
         
View Full Code Here

      {
          if (eAttribute == null || eAttribute == PartnerlinktypePackage.eINSTANCE.getRole_Name())
              niceSetAttribute(theElement,PartnerlinktypeConstants.NAME_ATTRIBUTE,getName());
          if (eAttribute == null || eAttribute == PartnerlinktypePackage.eINSTANCE.getRole_PortType())
          {
              PortType pt = (PortType)getPortType();
              QName qname = (pt == null) ? null : pt.getQName();
              if (qname != null)
                niceSetAttributeURIValue(theElement, PartnerlinktypeConstants.PORT_TYPE_ATTRIBUTE, qname.getNamespaceURI() + "#" + qname.getLocalPart());
          }
         
      }
View Full Code Here

     * @return the operation or null
     */
   
    public static Operation resolveOperation(Definition definition, QName portTypeQName, String operationName)
    {
        PortType portType = resolvePortType(definition, portTypeQName);
        return findOperation(portType, operationName);
    }
View Full Code Here

          org.eclipse.bpel.model.Process process = classProcessMap.get(e);
          process.updateElement();
          fireAddMappingEvent(new JbprocessBpelProcessMapping(e,process));
        }
        if (typePortTypeMap.get(e) != null){
          PortType portType = typePortTypeMap.get(e);
          portType.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,portType.getDocumentationElement()));
        }
        if (methodElementDeclMap.get(e) != null){
          XSDElementDeclaration elem = methodElementDeclMap.get(e);
          elem.updateElement();
          fireAddMappingEvent(new JbprocessElementMapping(e,elem.getElement()));
View Full Code Here

TOP

Related Classes of org.eclipse.wst.wsdl.PortType

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.