Turn ILttngAgentResponse into an abstract class
[deliverable/lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-common / org / lttng / ust / agent / client / SessiondEnableEventCommand.java
index 5f0fbd948ce5801c89eab64400dc8076ebc94a6e..bb20ac5784454ac6170b22913f1e096e3c379fe3 100644 (file)
@@ -51,8 +51,8 @@ class SessiondEnableEventCommand implements ISessiondCommand {
        }
 
        @Override
-       public ILttngAgentResponse execute(AbstractLttngAgent<?> agent) {
+       public LttngAgentResponse execute(AbstractLttngAgent<?> agent) {
                boolean success = agent.eventEnabled(this.eventName);
-               return (success ? ILttngAgentResponse.SUCESS_RESPONSE : ILttngAgentResponse.FAILURE_RESPONSE);
+               return (success ? LttngAgentResponse.SUCESS_RESPONSE : LttngAgentResponse.FAILURE_RESPONSE);
        }
 }
This page took 0.025429 seconds and 5 git commands to generate.