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

io.xream.x7.reyc.internal.ReycProperties Maven / Gradle / Ivy

There is a newer version: 2.13.0.RELEASE
Show newest version
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