cleanup: Mark obsolete JUL agent as @Deprecated
[lttng-ust.git] / liblttng-ust-java-agent / java / org / lttng / ust / jul / LTTngAgent.java
CommitLineData
43e5396b 1/*
501f6777 2 * Copyright (C) 2014 - Christian Babeux <christian.babeux@efficios.com>
43e5396b
DG
3 *
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
7 *
8 * This library is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
11 * for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16 */
17
18package org.lttng.ust.jul;
19
501f6777 20import java.io.IOException;
43e5396b 21
c518eed3 22@Deprecated
501f6777 23public class LTTngAgent {
43e5396b 24
501f6777
CB
25 /*
26 * !!! WARNING !!!
27 * Please use the LTTngAgent found in the org.lttng.ust.agent package.
28 * This class is DEPRECATED.
29 */
30
31 private static LTTngAgent curAgent = null;
32 private static org.lttng.ust.agent.LTTngAgent realAgent = null;
33
34
35 private LTTngAgent() throws IOException {
36 realAgent = org.lttng.ust.agent.LTTngAgent.getLTTngAgent();
43e5396b
DG
37 }
38
501f6777
CB
39 public static synchronized LTTngAgent getLTTngAgent() throws IOException {
40 if (curAgent == null) {
41 curAgent = new LTTngAgent();
43e5396b 42 }
501f6777
CB
43
44 return curAgent;
43e5396b
DG
45 }
46
501f6777
CB
47 public void dispose() throws IOException {
48 realAgent.dispose();
43e5396b
DG
49 }
50}
This page took 0.025237 seconds and 4 git commands to generate.