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

com.founder.api.factory.RpcCommonAmpFallbackFactory Maven / Gradle / Ivy

package com.founder.api.factory;

import com.founder.api.RpcCommonAmpService;
import org.springframework.cloud.openfeign.FallbackFactory;
import org.springframework.stereotype.Component;

@Component
public class RpcCommonAmpFallbackFactory implements FallbackFactory {

    @Override
    public RpcCommonAmpService create(Throwable cause) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy