jlaskowski 2005/06/19 18:40:27
Modified: modules/core/src/java/org/openejb Container.java
DeploymentInfo.java
InvalidateReferenceException.java OpenEJB.java
RpcContainer.java package.html
Log:
A step towards cutting the 1.0 release:
o openejb:release goal to cut a release
o polishing the sources so that javadoc is built without any errors or
warnings
o Add javadoc to release in openejb:release
Revision Changes Path
1.2 +3 -6 openejb1/modules/core/src/java/org/openejb/Container.java
Index: Container.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/Container.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Container.java 26 Mar 2004 21:41:20 -0000 1.1
+++ Container.java 19 Jun 2005 22:40:27 -0000 1.2
@@ -93,7 +93,6 @@
* Gets the id of this container.
*
* @return the id of this container.
- * @see DeploymentInfo#getContainerID() DeploymentInfo.getContainerID()
*/
public Object getContainerID();
@@ -101,10 +100,9 @@
/**
* Gets the <code>DeploymentInfo</code> object for the bean with the
specified deployment id.
*
- * @param id the deployment id of the deployed bean.
+ * @param deploymentID the deployment id of the deployed bean.
* @return the DeploymentInfo object associated with the bean.
* @see DeploymentInfo
- * @see ContainerSystem#getDeploymentInfo(Object)
ContainerSystem.getDeploymentInfo
* @see DeploymentInfo#getDeploymentID()
*/
public DeploymentInfo getDeploymentInfo(Object deploymentID);
@@ -114,13 +112,12 @@
*
* @return an array of DeploymentInfo objects
* @see DeploymentInfo
- * @see ContainerSystem#deployments() ContainerSystem.deployments()
*/
public DeploymentInfo [] deployments();
/**
* Adds a bean to this container.
- * @param deploymentId the deployment id of the bean to deploy.
+ * @param deploymentID the deployment id of the bean to deploy.
* @param info the DeploymentInfo object associated with the bean.
* @throws org.openejb.OpenEJBException
* Occurs when the container is not able to deploy the bean for some
1.3 +1 -5
openejb1/modules/core/src/java/org/openejb/DeploymentInfo.java
Index: DeploymentInfo.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/DeploymentInfo.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- DeploymentInfo.java 14 Aug 2004 10:35:34 -0000 1.2
+++ DeploymentInfo.java 19 Jun 2005 22:40:27 -0000 1.3
@@ -150,7 +150,6 @@
* Gets the type of this bean component.
* Will return a <code>STATEFUL</code>, <code>STATELESS</code>,
<code>BMP_ENTITY</code> or <code>CMP_ENTITY</code>.
*
- * @param
* @return Returns <code>STATEFUL</code>, <code>STATELESS</code>,
<code>BMP_ENTITY</code> or <code>CMP_ENTITY</code>.
* @see #STATEFUL
* @see #STATELESS
@@ -203,8 +202,6 @@
* Gets the id of this bean deployment.
*
* @return the id of of this bean deployment
- * @see ContainerManager#getContainerManagerID()
ContainerManager.getContainerManagerID()
- * @see Container#getContainerManagerID()
Container.getContainerManagerID()
*/
public Object getDeploymentID( );
@@ -222,7 +219,6 @@
* Used primarily by Servers integrating OpenEJB into their platform.
Aids in implementing
* the bean's home interface.
*
- * @param
* @return a Class object of the bean's home interface
* @see javax.ejb.EJBHome
*/
1.2 +2 -2
openejb1/modules/core/src/java/org/openejb/InvalidateReferenceException.java
Index: InvalidateReferenceException.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/InvalidateReferenceException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- InvalidateReferenceException.java 26 Mar 2004 21:41:20 -0000 1.1
+++ InvalidateReferenceException.java 19 Jun 2005 22:40:27 -0000 1.2
@@ -96,7 +96,7 @@
/**
* Constructs a InvalidateReferenceException with the source of the
problem that occurred.
*
- * @param e
+ * @param t
*/
public InvalidateReferenceException(Throwable t){
super(t);
1.6 +6 -8 openejb1/modules/core/src/java/org/openejb/OpenEJB.java
Index: OpenEJB.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/OpenEJB.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- OpenEJB.java 25 Aug 2004 23:52:09 -0000 1.5
+++ OpenEJB.java 19 Jun 2005 22:40:27 -0000 1.6
@@ -105,10 +105,10 @@
* <p>
* @author Richard Monson-Haefel
* @author David Blevins
- * @version 0.1, 3/21/2000
+ * @version $Rev$
* @since JDK 1.2
* @see org.openejb.EnvProps
- * @see org.openejb.core.conf.Assembler
+ * @see org.openejb.alt.assembler.classic.Assembler
* @see org.openejb.spi.Assembler
*/
@@ -130,7 +130,8 @@
/**
*
- * @param props Specifies the Assembler and other properties used to
build the ContainerSystem
+ * @param initProps Specifies the Assembler and other properties used to
build the ContainerSystem
+ * @param appServer application server
* @exception org.openejb.OpenEJBException Thrown if a problem occurs
building the ContainerSystem
* @since JDK 1.2
*/
@@ -200,7 +201,7 @@
SafeToolkit toolkit = SafeToolkit.getToolkit("OpenEJB");
/* Uses the EnvProps.ASSEMBLER property to obtain the Assembler impl.
- Default is org.openejb.core.conf.Assembler*/
+ Default is org.openejb.alt.assembler.classic.Assembler */
String className = props.getProperty( EnvProps.ASSEMBLER );
if ( className == null ) {
className = props.getProperty( "openejb.assembler",
"org.openejb.alt.assembler.classic.Assembler" );
@@ -374,9 +375,7 @@
* @param id the id of the Container
* @return the Container associated with the id
* @see Container
- * @see ContainerManager#getContainer(Object)
ContainerManager.getContainer
* @see Container#getContainerID() Container.getContainerID()
- * @see DeploymentInfo#getContainerID() DeploymentInfo.getContainerID()
*/
public static Container getContainer(Object id){
return containerSystem.getContainer(id);
@@ -387,7 +386,6 @@
*
* @return an array of all the Containers
* @see Container
- * @see ContainerManager#containers() ContainerManager.containers()
*/
public static Container [] containers() {
if ( containerSystem == null ) {// Something went wrong in the
configuration.
1.2 +2 -2
openejb1/modules/core/src/java/org/openejb/RpcContainer.java
Index: RpcContainer.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/RpcContainer.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- RpcContainer.java 26 Mar 2004 21:41:22 -0000 1.1
+++ RpcContainer.java 19 Jun 2005 22:40:27 -0000 1.2
@@ -128,7 +128,7 @@
* @param callMethod the method to be called on the bean instance
* @param args the arguments to use when invoking the specified method
* @param primKey the primary key class of the bean or null if the bean
does not need a primary key
- * @param prncpl
+ * @param securityIdentity identity
* @return the result of invoking the specified method on the bean
instance
* @throws OpenEJBException
* @see org.openejb.core.stateful.StatefulContainer#invoke
StatefulContainer.invoke
1.3 +3 -4 openejb1/modules/core/src/java/org/openejb/package.html
Index: package.html
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/package.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- package.html 8 Jul 2004 11:55:22 -0000 1.2
+++ package.html 19 Jun 2005 22:40:27 -0000 1.3
@@ -55,7 +55,7 @@
<h2>Package Specification</h2>
-OpenEJB is a pre-built, self-contained, portable EJB [EMAIL PROTECTED]
org.openejb.ContainerSystem container system} that can be
+OpenEJB is a pre-built, self-contained, portable EJB [EMAIL PROTECTED]
org.openejb.core.ContainerSystem container system} that can be
plugged into any application server environment. OpenEJB provides a clear
separation
of responsibilities between the EJB container and the EJB server. The
application server
and OpenEJB container system interact through the interfaces and classes
defined in this
@@ -80,8 +80,7 @@
<!-- Put @see and @since tags down here. -->
@see org.openejb.OpenEJB
[EMAIL PROTECTED] org.openejb.ContainerSystem
[EMAIL PROTECTED] org.openejb.ContainerManager
[EMAIL PROTECTED] org.openejb.core.ContainerSystem
@see org.openejb.Container
@see org.openejb.DeploymentInfo
</body>