blob: 0607533b292a0856cb371b3c45ac87a65754a0f4 [file] [log] [blame]
HIGUCHI Yuta356086e2013-06-12 15:21:19 -07001package net.onrc.onos.ofcontroller.util;
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -08002
Pavlin Radoslavovad008e02013-02-21 18:42:42 -08003import org.codehaus.jackson.annotate.JsonProperty;
Pavlin Radoslavovad008e02013-02-21 18:42:42 -08004
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -08005/**
6 * The class representing a Caller ID for an ONOS component.
7 */
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -08008public class CallerId {
9 private String value;
10
11 /**
12 * Default constructor.
13 */
14 public CallerId() {}
15
16 /**
17 * Constructor from a string value.
18 *
19 * @param value the value to use.
20 */
21 public CallerId(String value) {
22 this.value = value;
23 }
24
25 /**
26 * Get the value of the Caller ID.
27 *
28 * @return the value of the Caller ID.
29 */
Pavlin Radoslavov2013cbb2013-02-26 10:15:18 -080030 @JsonProperty("value")
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080031 public String value() { return value; }
32
33 /**
34 * Set the value of the Caller ID.
35 *
36 * @param value the value to set.
37 */
Pavlin Radoslavov2013cbb2013-02-26 10:15:18 -080038 @JsonProperty("value")
Pavlin Radoslavov5363c2a2013-02-18 09:55:42 -080039 public void setValue(String value) {
40 this.value = value;
41 }
42
43 /**
44 * Convert the Caller ID value to a string.
45 *
46 * @return the Caller ID value to a string.
47 */
48 @Override
49 public String toString() {
50 return value;
51 }
52}