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