You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by co...@apache.org on 2003/02/16 14:30:37 UTC

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb JbossDeploymentTool.java

conor       2003/02/16 05:30:37

  Modified:    src/main/org/apache/tools/ant/taskdefs/optional/ejb
                        JbossDeploymentTool.java
  Log:
  Add suffix support for ejbjar jboss element
  
  PR:	14959
  Submitted by:	Jesse Stockall
  
  Revision  Changes    Path
  1.9       +8 -0      ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/JbossDeploymentTool.java
  
  Index: JbossDeploymentTool.java
  ===================================================================
  RCS file: /home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/ejb/JbossDeploymentTool.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -w -u -r1.8 -r1.9
  --- JbossDeploymentTool.java	10 Feb 2003 14:13:50 -0000	1.8
  +++ JbossDeploymentTool.java	16 Feb 2003 13:30:37 -0000	1.9
  @@ -74,6 +74,14 @@
       private String jarSuffix = ".jar";
   
       /**
  +     * Setter used to store the suffix for the generated JBoss jar file.
  +     * @param inString the string to use as the suffix.
  +     */
  +    public void setSuffix(String inString) {
  +        jarSuffix = inString;
  +    }
  +    
  +    /**
        * Add any vendor specific files which should be included in the
        * EJB Jar.
        */