Update of /cvsroot/mc4j/mc4j/modules/ems/src/ems/org/mc4j/ems/connection/support/metadata
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv32360/modules/ems/src/ems/org/mc4j/ems/connection/support/metadata
Modified Files:
AbstractConnectionTypeDescriptor.java
WebsphereConnectionTypeDescriptor.java
ConnectionTypeDescriptor.java
Log Message:
Visual tweaks
Index: WebsphereConnectionTypeDescriptor.java
===================================================================
RCS file: /cvsroot/mc4j/mc4j/modules/ems/src/ems/org/mc4j/ems/connection/support/metadata/WebsphereConnectionTypeDescriptor.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** WebsphereConnectionTypeDescriptor.java 12 Apr 2006 19:11:33 -0000 1.2
--- WebsphereConnectionTypeDescriptor.java 22 May 2006 02:38:52 -0000 1.3
***************
*** 63,66 ****
--- 63,68 ----
"AppServer/deploytool/itp/plugins/com.ibm.etools.jsse/ibmjsse.jar",
"AppServer/java/jre/lib/ext/mail.jar",
+ "AppServer/java/jre/lib/ibmcertpathprovider.jar",
+ "AppServer/java/jre/lib/ext/ibmjceprovider.jar",
"AppServer/deploytool/itp/plugins/org.apache.xerces_4.0.13/xercesImpl.jar",
"AppServer/deploytool/itp/plugins/org.apache.xerces_4.0.13/xmlParserAPIs.jar",
***************
*** 69,73 ****
public String getConnectionNodeClassName() {
! return "org.mc4j.console.connection.WebsphereConnectionProvider";
}
--- 71,75 ----
public String getConnectionNodeClassName() {
! return "org.mc4j.ems.impl.jmx.connection.support.providers.WebsphereConnectionProvider";
}
Index: AbstractConnectionTypeDescriptor.java
===================================================================
RCS file: /cvsroot/mc4j/mc4j/modules/ems/src/ems/org/mc4j/ems/connection/support/metadata/AbstractConnectionTypeDescriptor.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AbstractConnectionTypeDescriptor.java 12 Apr 2006 19:11:33 -0000 1.2
--- AbstractConnectionTypeDescriptor.java 22 May 2006 02:38:52 -0000 1.3
***************
*** 77,80 ****
--- 77,83 ----
}
+ public boolean isUseChildFirstClassLoader() {
+ return false;
+ }
Index: ConnectionTypeDescriptor.java
===================================================================
RCS file: /cvsroot/mc4j/mc4j/modules/ems/src/ems/org/mc4j/ems/connection/support/metadata/ConnectionTypeDescriptor.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ConnectionTypeDescriptor.java 12 Apr 2006 19:11:33 -0000 1.2
--- ConnectionTypeDescriptor.java 22 May 2006 02:38:52 -0000 1.3
***************
*** 27,30 ****
--- 27,35 ----
public interface ConnectionTypeDescriptor extends Serializable {
+ /**
+ * Typically used to provide an example template for the url necessary to connect
+ * to this server type.
+ * @return The default server url for connecting to this server type.
+ */
String getDefaultServerUrl();
***************
*** 59,61 ****
--- 64,74 ----
Properties getDefaultAdvancedProperties();
+ /**
+ * True if the ClassLoaderFactory should use the connection specific library
+ * classes before using the system classes. This may be, for example, to utilize
+ * the WebSphere or WebLogic JMX classes instead of the JDK 1.5 classes.
+ * @return true if connection classes should be used first
+ */
+ boolean isUseChildFirstClassLoader();
+
}
|