jlaskowski 2005/06/19 18:40:32
Modified: modules/core/src/java/org/openejb/core/stateless
StatelessContainer.java
StatelessEjbObjectHandler.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.3 +7 -12
openejb1/modules/core/src/java/org/openejb/core/stateless/StatelessContainer.java
Index: StatelessContainer.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/stateless/StatelessContainer.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- StatelessContainer.java 26 Aug 2004 07:20:26 -0000 1.2
+++ StatelessContainer.java 19 Jun 2005 22:40:32 -0000 1.3
@@ -103,7 +103,6 @@
*
* @param id the unique id to identify this container in the
ContainerSystem
* @param registry a hashMap of bean delpoyments that this container
will be responsible for
- * @param mngr the ContainerManager for this container
* @param properties the properties this container needs to initialize
and run
* @throws OpenEJBException if there is a problem constructing the
container
* @see org.openejb.Container
@@ -153,7 +152,6 @@
*
* @return an array of DeploymentInfo objects
* @see org.openejb.DeploymentInfo
- * @see org.openejb.ContainerSystem#deployments()
ContainerSystem.deployments()
*/
public DeploymentInfo [] deployments(){
return (DeploymentInfo [])deploymentRegistry.values().toArray(new
DeploymentInfo[deploymentRegistry.size()]);
@@ -162,10 +160,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 org.openejb.DeploymentInfo
- * @see org.openejb.ContainerSystem#getDeploymentInfo(Object)
ContainerSystem.getDeploymentInfo
* @see org.openejb.DeploymentInfo#getDeploymentID()
*/
public DeploymentInfo getDeploymentInfo(Object deploymentID){
@@ -184,7 +181,6 @@
* Gets the id of this container.
*
* @return the id of this container.
- * @see org.openejb.DeploymentInfo#getContainerID()
DeploymentInfo.getContainerID()
*/
public Object getContainerID(){
return containerID;
@@ -192,7 +188,7 @@
/**
* 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
@@ -211,13 +207,13 @@
* @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 org.openejb.OpenEJBException
- * @see org.openejb.Container#invoke Container.invoke
* @see org.openejb.core.stateful.StatefulContainer#invoke
StatefulContainer.invoke
*/
- public Object invoke(Object deployID, Method callMethod,Object []
args,Object primKey, Object securityIdentity) throws
org.openejb.OpenEJBException{
+ public Object invoke(Object deployID, Method callMethod,Object []
args,Object primKey, Object securityIdentity)
+ throws org.openejb.OpenEJBException {
try{
org.openejb.core.DeploymentInfo deployInfo =
(org.openejb.core.DeploymentInfo)this.getDeploymentInfo(deployID);
@@ -340,7 +336,6 @@
* because instances are shared and pooled and only delegated to service
a request when a call is
* received from the client. The ProxyInfo object will allow the server
to construct an
* appropriate remote reference that the client can use to make calls.
- * @param callingMethod TODO
*/
protected ProxyInfo createEJBObject(org.openejb.core.DeploymentInfo
deploymentInfo, Method callMethod) {
Class callingClass = callMethod.getDeclaringClass();
1.2 +3 -3
openejb1/modules/core/src/java/org/openejb/core/stateless/StatelessEjbObjectHandler.java
Index: StatelessEjbObjectHandler.java
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/stateless/StatelessEjbObjectHandler.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- StatelessEjbObjectHandler.java 26 Mar 2004 21:42:38 -0000 1.1
+++ StatelessEjbObjectHandler.java 19 Jun 2005 22:40:32 -0000 1.2
@@ -91,7 +91,7 @@
* @param method
* @param args
* @param proxy
- * @return
+ * @return Object
* @exception Throwable
*/
protected Object getPrimaryKey(Method method, Object[] args, Object
proxy) throws Throwable{
@@ -130,7 +130,7 @@
* @param method
* @param args
* @param proxy
- * @return
+ * @return Object
* @exception Throwable
*/
protected Object isIdentical(Method method, Object[] args, Object proxy)
throws Throwable{
1.3 +2 -3
openejb1/modules/core/src/java/org/openejb/core/stateless/package.html
Index: package.html
===================================================================
RCS file:
/home/projects/openejb/scm/openejb1/modules/core/src/java/org/openejb/core/stateless/package.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- package.html 8 Jul 2004 11:55:25 -0000 1.2
+++ package.html 19 Jun 2005 22:40:32 -0000 1.3
@@ -67,8 +67,7 @@
<!-- Put @see and @since tags down here. -->
@see org.openejb.core.ContainerSystem
[EMAIL PROTECTED] org.openejb.core.ContainerManager
[EMAIL PROTECTED] org.openejb.core.Container
[EMAIL PROTECTED] org.openejb.Container
@see org.openejb.core.DeploymentInfo
</body>
</html>