io.xream.x7.reyc.internal.ReycProperties 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 ReycProperties {
@Value("${x7.reyc.fallback.remote-exception:'Exception'}")
private String remoteException;
public String getRemoteException() {
return remoteException;
}
public void setRemoteException(String remoteException) {
this.remoteException = remoteException;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy