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

com.intershop.oms.test.configuration.ServiceEndpoint Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy