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

com.intershop.oms.test.configuration.ServiceCredentials 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 ServiceCredentials {
    @WithName("user")
    Optional user();

    @WithName("password")
    Optional password();

    @WithName("token")
    Optional token();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy