Fix some non-ascii chars in comments

master
Vitaliy Filippov 2015-12-26 15:22:23 +03:00
parent adeb0383b0
commit 6d34112b44
4 changed files with 8 additions and 8 deletions

View File

@ -67,7 +67,7 @@ public interface EndpointLifeCycle {
/** /**
* Service engines "pause" executing business logic when it reaches * Service engines "pause" executing business logic when it reaches
* an invoke, whereas binding components (BCs) stop inbound external connections * an invoke, whereas binding components (BCs) stop inbound external connections
* (or dont service them). * (or don't service them).
* *
* @param srvcUnit The service unit for which to stop consuming. * @param srvcUnit The service unit for which to stop consuming.
* @throws DeploymentException if an error occurs stopping consuming. * @throws DeploymentException if an error occurs stopping consuming.

View File

@ -31,7 +31,7 @@
package com.sun.jbi.component.toolkit.util.task; package com.sun.jbi.component.toolkit.util.task;
/** /**
* The document element, which, along with the documents namespace, identifies * The document element, which, along with the document's namespace, identifies
* this as a JBI management task result/status report. * this as a JBI management task result/status report.
* *
* @author Kevan Simpson * @author Kevan Simpson

View File

@ -31,8 +31,8 @@
package com.sun.jbi.component.toolkit.util.task; package com.sun.jbi.component.toolkit.util.task;
/** /**
* Used to report the results of the implementations execution of the task, * Used to report the results of the implementation's execution of the task,
* and, optionally, the result of the components part of executing the task. * and, optionally, the result of the component's part of executing the task.
* This latter feature will appear only if applicable (the task involves * This latter feature will appear only if applicable (the task involves
* interaction with a component, and the task proceeds to the point where that * interaction with a component, and the task proceeds to the point where that
* interaction was started.) * interaction was started.)

View File

@ -33,17 +33,17 @@ package com.sun.jbi.component.toolkit.util.task;
import javax.jbi.component.ServiceUnitManager; import javax.jbi.component.ServiceUnitManager;
/** /**
* Used to report either the results of the JBI implementations execution * Used to report either the results of the JBI implementation's execution
* of the task (a "framework" task result) OR the results of * of the task (a "framework" task result) OR the results of
* interaction(s) with a component (a "component" task result). * interaction(s) with a component (a "component" task result).
* <p> * <p>
* A framework task result includes an optional element, * A framework task result includes an optional element,
* <code>is-cause-framework</code>, which the implementation MUST set to YES * <code>is-cause-framework</code>, which the implementation MUST set to "YES"
* in cases where the JBI implementation is the cause of the task failing to execute. * in cases where the JBI implementation is the cause of the task failing to execute.
* <p> * <p>
* A component task result includes the components unique name and details * A component task result includes the component's unique name and details
* about the component task results. For example, this is used by the * about the component task results. For example, this is used by the
* components {@link ServiceUnitManager} implementation to return the results * component's {@link ServiceUnitManager} implementation to return the results
* of {@link ServiceUnitManager#deploy(String, String)} and * of {@link ServiceUnitManager#deploy(String, String)} and
* {@link ServiceUnitManager#undeploy(String, String)}. * {@link ServiceUnitManager#undeploy(String, String)}.
* *