1 48 49 package com.caucho.ejb.burlap; 50 51 import com.caucho.hessian.io.HessianRemoteResolver; 52 53 import java.io.IOException ; 54 55 58 public class BurlapResolver implements HessianRemoteResolver { 59 62 public Object lookup(String type, String url) 63 throws IOException  64 { 65 System.out.println("LU: " + type + " " + url); 66 67 return null; 68 } 69 } 70 | Popular Tags |