6c5de23a4f016785318bfd6966e611abe52dbe59
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / devicemanager / impl / src / main / java / org / opendaylight / mwtn / base / database / EsObject.java
1 /*********************************************************************************
2  *  Copyright © 2015, highstreet technologies GmbH
3  *  All rights reserved!
4  *
5  *  http://www.highstreet-technologies.com/
6  *
7  *  The reproduction, transmission or use of this document or its contents is not
8  *  permitted without express written authority. Offenders will be liable for
9  *  damages. All rights, including rights created by patent grant or registration
10  *  of a utility model or design, are reserved. Technical modifications possible.
11  *  Technical specifications and features are binding only insofar as they are
12  *  specifically and expressly agreed upon in a written contract.
13  *
14  *  @author: Martin Skorupski [martin@skorupski.de]
15  *********************************************************************************/
16 package org.opendaylight.mwtn.base.database;
17
18 import com.fasterxml.jackson.annotation.JsonIgnore;
19
20 /**
21  * @author Herbert
22  *
23  */
24 public class EsObject implements IsEsObject {
25
26     @JsonIgnore
27     private String esId;
28
29     @Override
30     public String getEsId() {
31         return esId;
32     }
33
34     @Override
35     public void setEsId(String esId) {
36         this.esId = esId;
37     }
38
39 }