package com.dy.aceMw.server.forRmi; import java.rmi.RemoteException; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import com.dy.common.mw.channel.rmi.RmiRequestCallback; public class RmiRequestedCallback implements RmiRequestCallback{ @SuppressWarnings("unused") private static final Logger log; static { log = LogManager.getLogger(RmiRequestedCallback.class.getName()); } @Override public Object syncRequest(Object obj) throws RemoteException { return null; } @Override public String asyncRequest(Object obj) throws RemoteException { return null; } }