1 22 package org.jboss.ejb.plugins.cmp.bridge; 23 24 import java.util.Collection ; 25 import java.util.List ; 26 27 43 public interface EntityBridge { 44 public String getEntityName(); 45 public String getAbstractSchemaName(); 46 47 public FieldBridge getFieldByName(String fieldName); 48 public Class getRemoteInterface(); 49 public Class getLocalInterface(); 50 } 51 | Popular Tags |