Author: gavin.king(a)jboss.com
Date: 2009-10-29 01:45:13 -0400 (Thu, 29 Oct 2009)
New Revision: 4386
Modified:
api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/PassivationCapable.java
Log:
refresh
Modified: api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/PassivationCapable.java
===================================================================
---
api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/PassivationCapable.java 2009-10-29
05:40:18 UTC (rev 4385)
+++
api/trunk/cdi/src/main/java/javax/enterprise/inject/spi/PassivationCapable.java 2009-10-29
05:45:13 UTC (rev 4386)
@@ -18,7 +18,10 @@
package javax.enterprise.inject.spi;
/**
- * Used to indicate that a custom bean is passivation capable.
+ * Indicates that a custom implementation of
+ * {@link javax.enterprise.inject.spi.Bean or
+ * {@link javax.enterprise.context.spi.Contextual}
+ * is passivation capable.
*
* @author Gavin King
* @author David Allen
@@ -27,11 +30,15 @@
public interface PassivationCapable
{
/**
- * A string that uniquely identifies the Bean or Contextual. It is
- * recommended that the string contain the package name of the class that
- * implements Bean or Contextual.
+ * A string that uniquely identifies the instance of
+ * {@link javax.enterprise.inject.spi.Bean} or
+ * {@link javax.enterprise.context.spi.Contextual}. It is
+ * recommended that the string contain the package name of
+ * the class that implements {@code Bean} or {@code Contextual}.
*
- * @return a unique identifier for the Bean or Contextual
+ * @return a unique identifier for the
+ * {@link javax.enterprise.inject.spi.Bean} or
+ * {@link javax.enterprise.context.spi.Contextual}
*/
public String getId();
}