com.intershop.oms.test.configuration.ServiceEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iom-test-framework Show documentation
Show all versions of iom-test-framework Show documentation
An "SDK"-style library improving test automation for Intershop Order Management.
package com.intershop.oms.test.configuration;
import io.smallrye.config.WithName;
import java.util.Optional;
public interface ServiceEndpoint {
@WithName("protocol")
Optional protocol();
@WithName("host")
String host();
@WithName("port")
Optional port();
}