Author: ningjiang
Date: Wed Sep 26 19:56:18 2007
New Revision: 579877
URL: http://svn.apache.org/viewvc?rev=579877&view=rev
Log:
CXF-1047 Fixed the typos, thanks Glen
Modified:
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/JCABusFactory.java
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/Messages.properties
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/servant/EJBEndpoint.java
Modified:
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/JCABusFactory.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/JCABusFactory.java?rev=579877&r1=579876&r2=579877&view=diff
==============================================================================
---
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/JCABusFactory.java
(original)
+++
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/JCABusFactory.java
Wed Sep 26 19:56:18 2007
@@ -144,7 +144,7 @@
Integer pollIntervalInteger =
mcf.getEJBServicePropertiesPollInterval();
int pollInterval = pollIntervalInteger.intValue();
- LOG.info("Ejb service properties poll interval is : [" + pollInterval
+ " seconds]");
+ LOG.info("Ejb service properties poll interval is: [" + pollInterval +
" seconds]");
EJBServicePropertiesMonitorRunnable r = new
EJBServicePropertiesMonitorRunnable(pollInterval);
Thread t = new Thread(r);
Modified:
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/Messages.properties
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/Messages.properties?rev=579877&r1=579876&r2=579877&view=diff
==============================================================================
---
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/Messages.properties
(original)
+++
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/cxf/Messages.properties
Wed Sep 26 19:56:18 2007
@@ -24,6 +24,6 @@
ASSOCIATED_ERROR = Error in associating connection.
FAIL_TO_LOAD_EJB_SERVANT_PROPERTIES = Failed to load EJBServant properties
file: {0}
FAIL_TO_START_EJB_SERVANTS = Failed to start ejb servants.
-EJB_SERVANT_PROPERTIES_IS_NULL = MonitorEJBServiceProperties property is set
to true, but EJBServicePropertiesURL is not set, Both properties must be set to
enable monitoring.
+EJB_SERVANT_PROPERTIES_IS_NULL = MonitorEJBServiceProperties property is set
to true, but EJBServicePropertiesURL is not set. Both properties must be set to
enable monitoring.
FAIL_TO_INITIALIZE_JCABUSFACTORY = Failed to initialize JCABusFactory.
-NON_MANAGED_CONNECTION_IS_NOT_SUPPORTED = Non Managed Connection is not
supported, use createConnectionFactory with a ConnectionManager argument.
\ No newline at end of file
+NON_MANAGED_CONNECTION_IS_NOT_SUPPORTED = Non-Managed Connection is not
supported, use createConnectionFactory with a ConnectionManager argument.
\ No newline at end of file
Modified:
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/servant/EJBEndpoint.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/servant/EJBEndpoint.java?rev=579877&r1=579876&r2=579877&view=diff
==============================================================================
---
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/servant/EJBEndpoint.java
(original)
+++
incubator/cxf/trunk/integration/jca/src/main/java/org/apache/cxf/jca/servant/EJBEndpoint.java
Wed Sep 26 19:56:18 2007
@@ -95,7 +95,7 @@
return "http://" + hostName + ":9999";
}
- private boolean isJaxWsServiceInterface(Class<?> cls) {
+ private static boolean isJaxWsServiceInterface(Class<?> cls) {
if (cls == null) {
return false;
}
@@ -113,7 +113,7 @@
this.ejbServantBaseURL = ejbServantBaseURL;
}
- private boolean isNotNull(String value) {
+ private static boolean isNotNull(String value) {
if (value != null && !"".equals(value.trim())) {
return true;
}