Fix: examples jul: add missing files to make dist
[lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-common / org / lttng / ust / agent / client / SessiondDisableEventCommand.java
index 31d91e72e5a6d6e7e86e2bc5ae6f42d5fc6c625d..03cd9de6fb48cf94bf7ef35a3f2da373319940c7 100644 (file)
@@ -21,8 +21,6 @@ package org.lttng.ust.agent.client;
 import java.nio.ByteBuffer;
 import java.nio.ByteOrder;
 
-import org.lttng.ust.agent.AbstractLttngAgent;
-
 /**
  * Session daemon command indicating to the Java agent that some events were
  * disabled in the tracing session.
@@ -45,29 +43,19 @@ class SessiondDisableEventCommand implements ISessiondCommand {
        }
 
        @Override
-       public ILttngAgentResponse execute(AbstractLttngAgent<?> agent) {
+       public LttngAgentResponse execute(ILttngTcpClientListener agent) {
                boolean success = agent.eventDisabled(this.eventName);
-               return (success ? ILttngAgentResponse.SUCESS_RESPONSE : DISABLE_EVENT_FAILURE_RESPONSE);
+               return (success ? LttngAgentResponse.SUCESS_RESPONSE : DISABLE_EVENT_FAILURE_RESPONSE);
        }
 
        /**
         * Response sent when the disable-event command asks to disable an
         * unknown event.
         */
-       private static final ILttngAgentResponse DISABLE_EVENT_FAILURE_RESPONSE = new ILttngAgentResponse() {
-
+       private static final LttngAgentResponse DISABLE_EVENT_FAILURE_RESPONSE = new LttngAgentResponse() {
                @Override
                public ReturnCode getReturnCode() {
                        return ReturnCode.CODE_UNK_LOGGER_NAME;
                }
-
-               @Override
-               public byte[] getBytes() {
-                       byte data[] = new byte[INT_SIZE];
-                       ByteBuffer buf = ByteBuffer.wrap(data);
-                       buf.order(ByteOrder.BIG_ENDIAN);
-                       buf.putInt(getReturnCode().getCode());
-                       return data;
-               }
        };
 }
This page took 0.024196 seconds and 4 git commands to generate.