package jnpf.base.fallback; import jnpf.base.PrintApi; import jnpf.base.entity.PrintDevEntity; import jnpf.base.model.print.PaginationPrint; import jnpf.base.model.print.PrintOption; import org.springframework.stereotype.Component; import org.springframework.web.bind.annotation.RequestParam; import java.util.Collections; import java.util.List; @Component public class PrintApiFallback implements PrintApi { @Override public List getList(List ids) { return null; } @Override public List getListByIds(List ids) { return Collections.EMPTY_LIST; } @Override public List getWorkSelector(PaginationPrint page) { return Collections.EMPTY_LIST; } @Override public List getWorkSelector(List id) { return Collections.EMPTY_LIST; } @Override public List getListByCreUser(@RequestParam("creUser") String creUser) { return Collections.EMPTY_LIST; } }