From 419da12d4d7e0847c930b129e3392176730674dc Mon Sep 17 00:00:00 2001 From: Alexandre Montplaisir Date: Thu, 28 Jan 2016 15:43:19 -0500 Subject: [PATCH] Update for new context APIs No new tests yet, those will come later! Signed-off-by: Alexandre Montplaisir --- .../integration/client/TcpClientDebugListener.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lttng-ust-java-tests-common/src/test/java/org/lttng/ust/agent/integration/client/TcpClientDebugListener.java b/lttng-ust-java-tests-common/src/test/java/org/lttng/ust/agent/integration/client/TcpClientDebugListener.java index 703e0e3..1b6ce47 100644 --- a/lttng-ust-java-tests-common/src/test/java/org/lttng/ust/agent/integration/client/TcpClientDebugListener.java +++ b/lttng-ust-java-tests-common/src/test/java/org/lttng/ust/agent/integration/client/TcpClientDebugListener.java @@ -48,6 +48,18 @@ public class TcpClientDebugListener implements ILttngTcpClientListener { return true; } + @Override + public boolean appContextDisabled(String contextRetrieverName, String contextName) { + // TODO NYI + return false; + } + + @Override + public boolean appContextEnabled(String contextRetrieverName, String contextName) { + // TODO NYI + return false; + } + /** * Not yet implemented */ -- 2.34.1