1 6 7 package org.jfox.ioc.connector.local; 8 9 import java.rmi.RemoteException ; 10 11 import org.jfox.ioc.connector.AbstractConnectorRemote; 12 13 16 17 public class LOCALConnectorRemote extends AbstractConnectorRemote { 18 19 private static LOCALConnectorRemote me = new LOCALConnectorRemote(); 20 21 public static LOCALConnectorRemote getInstance() { 22 return me; 23 } 24 25 protected void doInit() throws Exception { 26 } 27 28 protected void doStart() throws Exception { 29 } 30 31 protected void doStop() throws Exception { 32 } 33 34 protected void doDestroy() throws Exception { 35 } 36 37 public String getProtocol() throws RemoteException { 38 return "LOCAL"; 39 } 40 41 public static void main(String [] args) { 42 43 } 44 } 45 | Popular Tags |