Implement Java agent application context retrieval
[lttng-ust.git] / liblttng-ust-java-agent / java / lttng-ust-agent-common / org / lttng / ust / agent / client / SessiondCommand.java
index ee191da19eae64edb311ea028188c4a9cf65fa70..fd5bb1de89030579734d158b7e577acb028c6aa7 100644 (file)
@@ -30,15 +30,18 @@ import java.nio.ByteBuffer;
 abstract class SessiondCommand {
 
        enum CommandType {
-
                /** List logger(s). */
                CMD_LIST(1),
                /** Enable logger by name. */
-               CMD_ENABLE(2),
+               CMD_EVENT_ENABLE(2),
                /** Disable logger by name. */
-               CMD_DISABLE(3),
+               CMD_EVENT_DISABLE(3),
                /** Registration done */
-               CMD_REG_DONE(4);
+               CMD_REG_DONE(4),
+               /** Enable application context */
+               CMD_APP_CTX_ENABLE(5),
+               /** Disable application context */
+               CMD_APP_CTX_DISABLE(6);
 
                private int code;
 
This page took 0.022975 seconds and 4 git commands to generate.