Disable syslog in heat-translator for functest integration
[parser.git] / verigraph / src / main / java / it / polito / escape / verify / model / Entry.java
1 /*******************************************************************************
2  * Copyright (c) 2017 Politecnico di Torino and others.
3  *
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Apache License, Version 2.0
6  * which accompanies this distribution, and is available at
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *******************************************************************************/
9
10 package it.polito.escape.verify.model;
11
12 public class Entry {
13         private String  direction;
14         private String  destination;
15
16         public Entry(String direction, String destination) {
17                 this.direction = direction;
18                 this.destination = destination;
19         }
20
21         public String getDirection() {
22                 return direction;
23         }
24
25         public void setDirection(String direction) {
26                 this.direction = direction;
27         }
28
29         public String getDestination() {
30                 return destination;
31         }
32
33         public void setDestination(String destination) {
34                 this.destination = destination;
35         }
36
37 }