Browse Source

Add suffix support for ejbjar jboss element

PR:	14959
Submitted by:	Jesse Stockall


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274084 13f79535-47bb-0310-9956-ffa450edef68
master
Conor MacNeill 22 years ago
parent
commit
0eba6abe79
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      src/main/org/apache/tools/ant/taskdefs/optional/ejb/JbossDeploymentTool.java

+ 8
- 0
src/main/org/apache/tools/ant/taskdefs/optional/ejb/JbossDeploymentTool.java View File

@@ -73,6 +73,14 @@ public class JbossDeploymentTool extends GenericDeploymentTool {
/** Instance variable that stores the suffix for the jboss jarfile. */
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.


Loading…
Cancel
Save