Implement Java agent application context retrieval
[lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-common / org / lttng / ust / agent / client / SessiondDisableEventCommand.java
index 2956c7e20363f2cd0cbbe73bfc873453f3ff74b1..4a19c22ea91d3e6743119737dc828a4672b434e9 100644 (file)
@@ -28,7 +28,7 @@ import java.nio.ByteOrder;
  * @author Alexandre Montplaisir
  * @author David Goulet
  */
-class SessiondDisableEventCommand implements ISessiondCommand {
+class SessiondDisableEventCommand extends SessiondCommand {
 
        /** Event name to disable from the tracing session */
        private final String eventName;
@@ -55,7 +55,7 @@ class SessiondDisableEventCommand implements ISessiondCommand {
        private static final LttngAgentResponse DISABLE_EVENT_FAILURE_RESPONSE = new LttngAgentResponse() {
                @Override
                public ReturnCode getReturnCode() {
-                       return ReturnCode.CODE_UNK_LOGGER_NAME;
+                       return ReturnCode.CODE_UNKNOWN_LOGGER_NAME;
                }
        };
 }
This page took 0.02347 seconds and 4 git commands to generate.