summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/EJBImplementationGenerated.java
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/EJBImplementationGenerated.java17
1 files changed, 8 insertions, 9 deletions
diff --git a/branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/EJBImplementationGenerated.java b/branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/EJBImplementationGenerated.java
index f486b63904..f51a86c003 100644
--- a/branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/EJBImplementationGenerated.java
+++ b/branches/sca-java-1.x/modules/contribution-jee/src/main/java/org/apache/tuscany/sca/contribution/jee/EJBImplementationGenerated.java
@@ -23,22 +23,21 @@ import org.apache.tuscany.sca.assembly.Implementation;
/**
- * The model representing an EJB implementation in an SCA assembly model.
- *
- * @version $Rev$ $Date$
+ * The model representing an EJB implementation in an SCA assembly model when the
+ * EJB implementation has been generated by introspecting a non-enhanced EAR
*/
public interface EJBImplementationGenerated extends Implementation {
/**
- * Returns the EJB link URI.
- * @return the EJB link URI
+ * Return the EjbInfo which generated this EJB component implementation
+ * @return
*/
- String getEJBLink();
+ EjbInfo getEJBInfo();
/**
- * Sets the EJB link URI.
- * @param ejbLink the EJB link URI
+ * Set the EjbInfo which generated this EJB component implementation
+ * @param ejbInfo
*/
- void setEJBLink(String ejbLink);
+ void setEJBInfo(EjbInfo ejbInfo);
}