New API for GNPy
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / gnpy / consumer / GnpyStatus.java
1 /*
2  * Copyright © 2022 Orange, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.transportpce.pce.gnpy.consumer;
9
10 import com.fasterxml.jackson.annotation.JsonProperty;
11
12 public class GnpyStatus {
13
14     @JsonProperty("version")
15     private String version;
16
17     @JsonProperty("status")
18     private String status;
19
20     public String getVersion() {
21         return version;
22     }
23
24     public void setVersion(String version) {
25         this.version = version;
26     }
27
28     public String getStatus() {
29         return status;
30     }
31
32     public void setStatus(String status) {
33         this.status = status;
34     }
35 }