org.mule.test.soap.extension.LaLigaServiceProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mule-football-soap-extension Show documentation
Show all versions of mule-football-soap-extension Show documentation
A Mule extension for testing Soap Connect
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();
}
}