jlaskowski    2005/06/19 18:40:34

  Modified:    modules/itests/src/java/org/openejb/test/entity/bmp
                        AllowedOperationsBmpBean.java
                        BasicBmp2DataSourcesBean.java
  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       +7 -14     
openejb1/modules/itests/src/java/org/openejb/test/entity/bmp/AllowedOperationsBmpBean.java
  
  Index: AllowedOperationsBmpBean.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/itests/src/java/org/openejb/test/entity/bmp/AllowedOperationsBmpBean.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- AllowedOperationsBmpBean.java     26 Mar 2004 21:43:16 -0000      1.1
  +++ AllowedOperationsBmpBean.java     19 Jun 2005 22:40:33 -0000      1.2
  @@ -92,10 +92,8 @@
       /**
        * Maps to BasicBmpHome.findEmptyCollection
        * 
  -     * @param primaryKey
  -     * @return 
  +     * @return Collection
        * @exception javax.ejb.FinderException
  -     * @see BasicBmpHome.sum
        */
       public java.util.Collection ejbFindEmptyCollection()
       throws javax.ejb.FinderException, java.rmi.RemoteException {
  @@ -117,9 +115,8 @@
        * Maps to BasicBmpHome.findByPrimaryKey
        * 
        * @param primaryKey
  -     * @return 
  +     * @return Integer
        * @exception javax.ejb.FinderException
  -     * @see BasicBmpHome.sum
        */
       public Integer ejbFindByPrimaryKey(Integer primaryKey)
       throws javax.ejb.FinderException{
  @@ -131,9 +128,8 @@
        * Maps to BasicBmpHome.create
        * 
        * @param name
  -     * @return 
  +     * @return Integer
        * @exception javax.ejb.CreateException
  -     * @see BasicBmpHome.create
        */
       public Integer ejbCreate(String name)
       throws javax.ejb.CreateException{
  @@ -158,8 +154,7 @@
       /**
        * Maps to BasicBmpObject.businessMethod
        * 
  -     * @return 
  -     * @see BasicBmpObject.businessMethod
  +     * @return String
        */
       public String businessMethod(String text){
           testAllowedOperations("businessMethod");
  @@ -193,8 +188,7 @@
        * Returns a report of the bean's
        * runtime permissions
        * 
  -     * @return 
  -     * @see BasicBmpObject.getPermissionsReport
  +     * @return null
        */
       public Properties getPermissionsReport(){
           /* TO DO: */
  @@ -208,8 +202,7 @@
        * for one of the bean's methods.
        * 
        * @param methodName The method for which to get the allowed opperations 
report
  -     * @return 
  -     * @see BasicBmpObject.getAllowedOperationsReport
  +     * @return OperationsPolicy 
        */
       public OperationsPolicy getAllowedOperationsReport(String methodName){
           return (OperationsPolicy) allowedOperationsTable.get(methodName);
  
  
  
  1.2       +8 -15     
openejb1/modules/itests/src/java/org/openejb/test/entity/bmp/BasicBmp2DataSourcesBean.java
  
  Index: BasicBmp2DataSourcesBean.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb1/modules/itests/src/java/org/openejb/test/entity/bmp/BasicBmp2DataSourcesBean.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- BasicBmp2DataSourcesBean.java     26 Mar 2004 21:43:17 -0000      1.1
  +++ BasicBmp2DataSourcesBean.java     19 Jun 2005 22:40:33 -0000      1.2
  @@ -97,11 +97,9 @@
       
       /**
        * Maps to BasicBmp2DataSourcesHome.findEmptyCollection
  -     * 
  -     * @param primaryKey
  -     * @return 
  +     *
  +     * @return Collection
        * @exception javax.ejb.FinderException
  -     * @see BasicBmp2DataSourcesHome.sum
        */
       public java.util.Collection ejbFindEmptyCollection()
       throws javax.ejb.FinderException, java.rmi.RemoteException {
  @@ -112,9 +110,8 @@
        * Maps to BasicBmp2DataSourcesHome.findByPrimaryKey
        * 
        * @param primaryKey
  -     * @return 
  +     * @return Integer
        * @exception javax.ejb.FinderException
  -     * @see BasicBmp2DataSourcesHome.sum
        */
       public Integer ejbFindByPrimaryKey(Integer primaryKey)
       throws javax.ejb.FinderException{
  @@ -140,9 +137,8 @@
        * Maps to BasicBmp2DataSourcesHome.create
        * 
        * @param name
  -     * @return 
  +     * @return Integer
        * @exception javax.ejb.CreateException
  -     * @see BasicBmp2DataSourcesHome.create
        */
       public Integer ejbCreate(String name)
       throws javax.ejb.CreateException{
  @@ -209,8 +205,7 @@
       /**
        * Maps to BasicBmp2DataSourcesObject.businessMethod
        * 
  -     * @return 
  -     * @see BasicBmp2DataSourcesObject.businessMethod
  +     * @return String
        */
       public String businessMethod(String text){
           testAllowedOperations("businessMethod");
  @@ -225,8 +220,7 @@
        * Returns a report of the bean's
        * runtime permissions
        * 
  -     * @return 
  -     * @see BasicBmp2DataSourcesObject.getPermissionsReport
  +     * @return null
        */
       public Properties getPermissionsReport(){
           /* TO DO: */
  @@ -240,8 +234,7 @@
        * for one of the bean's methods.
        * 
        * @param methodName The method for which to get the allowed opperations 
report
  -     * @return 
  -     * @see BasicBmp2DataSourcesObject.getAllowedOperationsReport
  +     * @return OperationPolicy 
        */
       public OperationsPolicy getAllowedOperationsReport(String methodName){
           return (OperationsPolicy) allowedOperationsTable.get(methodName);
  
  
  

Reply via email to