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

org.mule.test.soap.extension.LaLigaServiceProvider Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 * The software in this package is published under the terms of the CPAL v1.0
 * license, a copy of which has been included with this distribution in the
 * LICENSE.txt file.
 */
package org.mule.test.soap.extension;

import org.mule.runtime.extension.api.annotation.param.Parameter;
import org.mule.runtime.extension.api.soap.SoapServiceProvider;
import org.mule.runtime.extension.api.soap.WebServiceDefinition;

import com.google.common.collect.ImmutableList;

import java.util.List;

public class LaLigaServiceProvider implements SoapServiceProvider {

  public static final String LA_LIGA = "La Liga";
  public static final String LA_LIGA_SERVICE_A = "LaLigaServiceA";
  public static final String LA_LIGA_PORT_A = "LaLigaPortA";

  @Parameter
  private String firstDivision;

  @Parameter
  private String secondDivision;

  @Parameter
  private String wsdlLocation;

  public LaLigaServiceProvider() {}

  LaLigaServiceProvider(String wsdlLocation) {
    this.wsdlLocation = wsdlLocation;
    this.firstDivision = "FIRST_DIV";
  }

  @Override
  public List getWebServiceDefinitions() {
    return ImmutableList.builder().add(getFirstDivisionService()).build();
  }

  WebServiceDefinition getFirstDivisionService() {
    return WebServiceDefinition.builder().withId("A").withFriendlyName(firstDivision).withWsdlUrl(wsdlLocation)
        .withService(LA_LIGA_SERVICE_A).withPort(LA_LIGA_PORT_A).build();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy