Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.lttng2.control.core / src / org / eclipse / tracecompass / internal / lttng2 / control / core / relayd / lttngviewerCommands / GetPacketReturnCode.java
CommitLineData
8e15b929
MK
1/**********************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Matthew Khouzam - Initial implementation and API
11 * Marc-Andre Laperle - Initial implementation and API
12 **********************************************************************/
13
9bc60be7 14package org.eclipse.tracecompass.internal.lttng2.control.core.relayd.lttngviewerCommands;
8e15b929
MK
15
16/**
17 * Get packet return code
18 *
19 * @author Matthew Khouzam
8e15b929
MK
20 */
21public enum GetPacketReturnCode implements IBaseCommand {
22
23 /** Response was OK */
24 VIEWER_GET_PACKET_OK(1),
25 /** Response was RETRY */
26 VIEWER_GET_PACKET_RETRY(2),
27 /** Response was ERROR */
28 VIEWER_GET_PACKET_ERR(3),
29 /** Response was End of File */
30 VIEWER_GET_PACKET_EOF(4);
31
32 private final int fCode;
33
34 private GetPacketReturnCode(int c) {
35 fCode = c;
36 }
37
38 @Override
39 public int getCommand() {
40 return fCode;
41 }
42
43}
This page took 0.04126 seconds and 5 git commands to generate.