User: stevensa
Date: 02/05/16 15:53:37
Modified: modules/hp/src/xdoclet/modules/hp/bluestone/ejb Tag:
MODULE_REFACTORING_BRANCH BluestoneSubTask.java
Log:
Changed subtask name to hpas
Renamed template file
Removed todo-javadocs etc.
Revision Changes Path
No revision
No revision
1.1.2.5 +134 -167
xdoclet/modules/hp/src/xdoclet/modules/hp/bluestone/ejb/Attic/BluestoneSubTask.java
Index: BluestoneSubTask.java
===================================================================
RCS file:
/cvsroot/xdoclet/xdoclet/modules/hp/src/xdoclet/modules/hp/bluestone/ejb/Attic/BluestoneSubTask.java,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -u -w -r1.1.2.4 -r1.1.2.5
--- BluestoneSubTask.java 9 May 2002 16:37:58 -0000 1.1.2.4
+++ BluestoneSubTask.java 16 May 2002 22:53:37 -0000 1.1.2.5
@@ -10,173 +10,140 @@
import xdoclet.util.Translator;
/**
- * @xdoclet:subtask name="bluestone" parent="xdoclet.modules.ejb.EjbDocletTask"
- *
* @author <a href="mailto:[EMAIL PROTECTED]">Andrew Stevens</a>
* @created January 10, 2002
- * @version $Revision: 1.1.2.4 $
+ * @xdoclet:subtask name="hpas" parent="xdoclet.modules.ejb.EjbDocletTask"
+ * @version $Revision: 1.1.2.5 $
*/
-public class BluestoneSubTask extends AbstractEjbDeploymentDescriptorSubTask {
+public class BluestoneSubTask extends AbstractEjbDeploymentDescriptorSubTask
+{
- /**
- * @todo-javadoc Describe the field
- */
+ public final static String SUBTASK_NAME = "hpas";
+ private final static String BLUESTONE_DD_SCHEMA =
"http://www.hp.bluestone.com/xml/schemas/hp-ejb-jar.xsd";
+ private final static String DEFAULT_TEMPLATE_FILE =
"resources/hp-ejb-jar_xml.xdt";
+ private final static String DEFAULT_GENERATED_FILE = "hp-ejb-jar.xml";
protected String sfsbPassivationRoot = "";
- /**
- * @todo-javadoc Describe the field
- */
protected String persistenceProduct = "VXML";
- /**
- * @todo-javadoc Describe the field
- */
protected String persistenceVersion = "";
- /**
- * @todo-javadoc Describe the field
- */
protected String persistenceClass =
"com.hp.mwlabs.j2ee.containers.ejb.persistence.vxml.CMPPersistenceManager";
- /**
- * @todo-javadoc Describe the field
- */
protected String persistenceSuffix = "";
- /**
- * @todo-javadoc Describe the field
- */
- public final static String SUBTASK_NAME = "bluestone";
- /**
- * @todo-javadoc Describe the field
- */
- private final static String BLUESTONE_DD_SCHEMA =
"http://www.hp.bluestone.com/xml/schemas/hp-ejb-jar.xsd";
- /**
- * @todo-javadoc Describe the field
- */
- private final static String DEFAULT_TEMPLATE_FILE =
"resources/bluestone-hp-ejb-jar_xml.xdt";
- /**
- * @todo-javadoc Describe the field
- */
- private final static String DEFAULT_GENERATED_FILE = "hp-ejb-jar.xml";
-
-
- /**
- * Describe what the BluestoneSubTask constructor does
- *
- * @todo-javadoc Write javadocs for constructor
- */
- public BluestoneSubTask() {
+ public BluestoneSubTask()
+ {
setTemplateURL(getClass().getResource(DEFAULT_TEMPLATE_FILE));
setDestinationFile(DEFAULT_GENERATED_FILE);
setSchema(BLUESTONE_DD_SCHEMA);
setValidateXML(false);
}
-
/**
- * Sets the SfsbPassivationRoot attribute of the BluestoneSubTask object
+ * Gets the SubTaskName attribute of the BluestoneSubTask object
*
- * @param sfsbPassivationRoot The new SfsbPassivationRoot value
+ * @return The SubTaskName value
*/
- public void setSfsbPassivationRoot(String sfsbPassivationRoot) {
- this.sfsbPassivationRoot = sfsbPassivationRoot;
+ public String getSubTaskName()
+ {
+ return SUBTASK_NAME;
}
-
/**
- * Sets the PersistenceProduct attribute of the BluestoneSubTask object
+ * Gets the SfsbPassivationRoot attribute of the BluestoneSubTask object
*
- * @param persistenceProduct The new PersistenceProduct value
+ * @return The SfsbPassivationRoot value
*/
- public void setPersistenceProduct(String persistenceProduct) {
- this.persistenceProduct = persistenceProduct;
+ public String getSfsbPassivationRoot()
+ {
+ return sfsbPassivationRoot;
}
-
/**
- * Sets the PersistenceVersion attribute of the BluestoneSubTask object
+ * Gets the PersistenceProduct attribute of the BluestoneSubTask object
*
- * @param persistenceVersion The new PersistenceVersion value
+ * @return The PersistenceProduct value
*/
- public void setPersistenceVersion(String persistenceVersion) {
- this.persistenceVersion = persistenceVersion;
+ public String getPersistenceProduct()
+ {
+ return persistenceProduct;
}
-
/**
- * Sets the PersistenceClass attribute of the BluestoneSubTask object
+ * Gets the PersistenceVersion attribute of the BluestoneSubTask object
*
- * @param persistenceClass The new PersistenceClass value
+ * @return The PersistenceVersion value
*/
- public void setPersistenceClass(String persistenceClass) {
- this.persistenceClass = persistenceClass;
+ public String getPersistenceVersion()
+ {
+ return persistenceVersion;
}
-
/**
- * Sets the PersistenceSuffix attribute of the BluestoneSubTask object
+ * Gets the PersistenceClass attribute of the BluestoneSubTask object
*
- * @param persistenceSuffix The new PersistenceSuffix value
+ * @return The PersistenceClass value
*/
- public void setPersistenceSuffix(String persistenceSuffix) {
- this.persistenceSuffix = persistenceSuffix;
+ public String getPersistenceClass()
+ {
+ return persistenceClass;
}
-
/**
- * Gets the SubTaskName attribute of the BluestoneSubTask object
+ * Gets the PersistenceSuffix attribute of the BluestoneSubTask object
*
- * @return The SubTaskName value
+ * @return The PersistenceSuffix value
*/
- public String getSubTaskName() {
- return SUBTASK_NAME;
+ public String getPersistenceSuffix()
+ {
+ return persistenceSuffix;
}
-
/**
- * Gets the SfsbPassivationRoot attribute of the BluestoneSubTask object
+ * Sets the SfsbPassivationRoot attribute of the BluestoneSubTask object
*
- * @return The SfsbPassivationRoot value
+ * @param sfsbPassivationRoot The new SfsbPassivationRoot value
*/
- public String getSfsbPassivationRoot() {
- return sfsbPassivationRoot;
+ public void setSfsbPassivationRoot(String sfsbPassivationRoot)
+ {
+ this.sfsbPassivationRoot = sfsbPassivationRoot;
}
-
/**
- * Gets the PersistenceProduct attribute of the BluestoneSubTask object
+ * Sets the PersistenceProduct attribute of the BluestoneSubTask object
*
- * @return The PersistenceProduct value
+ * @param persistenceProduct The new PersistenceProduct value
*/
- public String getPersistenceProduct() {
- return persistenceProduct;
+ public void setPersistenceProduct(String persistenceProduct)
+ {
+ this.persistenceProduct = persistenceProduct;
}
-
/**
- * Gets the PersistenceVersion attribute of the BluestoneSubTask object
+ * Sets the PersistenceVersion attribute of the BluestoneSubTask object
*
- * @return The PersistenceVersion value
+ * @param persistenceVersion The new PersistenceVersion value
*/
- public String getPersistenceVersion() {
- return persistenceVersion;
+ public void setPersistenceVersion(String persistenceVersion)
+ {
+ this.persistenceVersion = persistenceVersion;
}
-
/**
- * Gets the PersistenceClass attribute of the BluestoneSubTask object
+ * Sets the PersistenceClass attribute of the BluestoneSubTask object
*
- * @return The PersistenceClass value
+ * @param persistenceClass The new PersistenceClass value
*/
- public String getPersistenceClass() {
- return persistenceClass;
+ public void setPersistenceClass(String persistenceClass)
+ {
+ this.persistenceClass = persistenceClass;
}
-
/**
- * Gets the PersistenceSuffix attribute of the BluestoneSubTask object
+ * Sets the PersistenceSuffix attribute of the BluestoneSubTask object
*
- * @return The PersistenceSuffix value
+ * @param persistenceSuffix The new PersistenceSuffix value
*/
- public String getPersistenceSuffix() {
- return persistenceSuffix;
+ public void setPersistenceSuffix(String persistenceSuffix)
+ {
+ this.persistenceSuffix = persistenceSuffix;
}
}
_______________________________________________________________
Have big pipes? SourceForge.net is looking for download mirrors. We supply
the hardware. You get the recognition. Email Us: [EMAIL PROTECTED]
_______________________________________________
Xdoclet-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel