io.xream.x7.reyc.internal.ReyClientProperties Maven / Gradle / Ivy
package io.xream.x7.reyc.internal;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.context.annotation.Configuration;
@Configuration
public class ReyClientProperties {
@Value("${x7.reyclient.remote-exception:'RemoteException'}")
private String remoteException;
public String getRemoteException() {
return remoteException;
}
public void setRemoteException(String remoteException) {
this.remoteException = remoteException;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy