Merge "Add verigraph code base"
[parser.git] / verigraph / service / src / mcnet / netobjs / PacketModel.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 mcnet.netobjs;
11
12 import com.microsoft.z3.DatatypeExpr;
13
14 /*
15  * Fields that can be configured -> "dest","body","seq","proto","emailFrom","url","options"
16  */
17 public class PacketModel {
18
19         private DatatypeExpr ip_dest;
20         private Integer body;
21         private Integer seq;
22         private Integer proto;
23         private Integer emailFrom;
24         private Integer url;
25         private Integer options;
26
27         public DatatypeExpr getIp_dest() {
28                 return ip_dest;
29         }
30         public void setIp_dest(DatatypeExpr ip_dest) {
31                 this.ip_dest = ip_dest;
32         }
33         public Integer getBody() {
34                 return body;
35         }
36         public void setBody(Integer body) {
37                 this.body = body;
38         }
39         public Integer getSeq() {
40                 return seq;
41         }
42         public void setSeq(Integer seq) {
43                 this.seq = seq;
44         }
45         public Integer getProto() {
46                 return proto;
47         }
48         public void setProto(Integer proto) {
49                 this.proto = proto;
50         }
51         public Integer getEmailFrom() {
52                 return emailFrom;
53         }
54         public void setEmailFrom(Integer emailFrom) {
55                 this.emailFrom = emailFrom;
56         }
57         public Integer getUrl() {
58                 return url;
59         }
60         public void setUrl(Integer url) {
61                 this.url = url;
62         }
63         public Integer getOptions() {
64                 return options;
65         }
66         public void setOptions(Integer options) {
67                 this.options = options;
68         }
69
70 }