2 * Copyright (C) 2015 - EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
3 * Copyright (C) 2013 - David Goulet <dgoulet@efficios.com>
5 * This library is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU Lesser General Public License, version 2.1 only,
7 * as published by the Free Software Foundation.
9 * This library is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this library; if not, write to the Free Software Foundation,
16 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 package org.lttng.ust.agent.client;
21 import org.lttng.ust.agent.AbstractLttngAgent;
24 * Interface to represent all commands sent from the session daemon to the Java
25 * agent. The agent is then expected to execute the command and provide a
28 * @author Alexandre Montplaisir
30 interface ISessiondCommand {
34 /** List logger(s). */
36 /** Enable logger by name. */
38 /** Disable logger by name. */
40 /** Registration done */
45 private CommandType(int c) {
49 public int getCommandType() {
55 * Execute the command handler's action on the specified tracing agent.
58 * The agent on which to execute the command
59 * @return If the command completed successfully or not
61 public ILttngAgentResponse execute(AbstractLttngAgent<?> agent);