1 15 package org.apache.hivemind.internal; 16 17 import org.apache.hivemind.definition.ServicePointDefinition; 18 19 26 public interface ServicePoint extends ExtensionPoint 27 { 28 34 public Class getServiceInterface(); 35 36 43 public Class getDeclaredInterface(); 44 45 54 55 public String getServiceInterfaceClassName(); 56 57 73 public Object getService(Class interfaceClass); 74 75 78 79 public void forceServiceInstantiation(); 80 81 public ServicePointDefinition getServicePointDefinition(); 82 83 } | Popular Tags |