Title: [893] trunk/core/src/main/java/org/servicemix/jbi/framework/InstallerMBeanImpl.java: Created Get methods for fields ComponentClassName and BootstrapClassName
- Revision
- 893
- Author
- gastaldi
- Date
- 2005-11-22 07:05:18 -0500 (Tue, 22 Nov 2005)
Log Message
Created Get methods for fields ComponentClassName and BootstrapClassName
Modified Paths
Diff
Modified: trunk/core/src/main/java/org/servicemix/jbi/framework/InstallerMBeanImpl.java (892 => 893)
--- trunk/core/src/main/java/org/servicemix/jbi/framework/InstallerMBeanImpl.java 2005-11-22 09:40:59 UTC (rev 892)
+++ trunk/core/src/main/java/org/servicemix/jbi/framework/InstallerMBeanImpl.java 2005-11-22 12:05:18 UTC (rev 893)
@@ -201,4 +201,20 @@
public void setObjectName(ObjectName objectName) {
this.objectName = objectName;
}
+
+ /**
+ *
+ * @return Returns the Bootstrap Class Name
+ */
+ public String getBootstrapClassName() {
+ return bootstrapClassName;
+ }
+
+ /**
+ *
+ * @return Returns the Component Class Name
+ */
+ public String getComponentClassName() {
+ return componentClassName;
+ }
}