summaryrefslogtreecommitdiffstats
path: root/verigraph/src/main/java/it/polito/escape/verify/resources/beans/VerificationBean.java
blob: d6f9ca672d871256723be8d93871e741602638dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*******************************************************************************
 * Copyright (c) 2017 Politecnico di Torino and others.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Apache License, Version 2.0
 * which accompanies this distribution, and is available at
 * http://www.apache.org/licenses/LICENSE-2.0
 *******************************************************************************/

package it.polito.escape.verify.resources.beans;

import javax.ws.rs.QueryParam;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

@ApiModel("Verification")
public class VerificationBean {

	@ApiModelProperty(example = "webclient", value = "Source node. Must refer to an existing node of the same graph")
	private @QueryParam("source") String		source;

	@ApiModelProperty(	example = "webserver",
						value = "Destination node. Must refer to an existing node of the same graph")
	private @QueryParam("destination") String	destination;

	@ApiModelProperty(	example = "reachability",
						value = "Verification policy ('reachability', 'isolation', 'traversal')")
	private @QueryParam("type") String			type;

	@ApiModelProperty(	example = "firewall",
						value = "Absent if verification type is 'reachability', equal to the name of a middlebox to be avoided if verification type is 'isolation', equal to the name of a middlebox to be traversed if verification type is 'traversal'")
	private @QueryParam("middlebox") String		middlebox;

	public String getSource() {
		return source;
	}

	public void setSource(String source) {
		this.source = source;
	}

	public String getDestination() {
		return destination;
	}

	public void setDestination(String destination) {
		this.destination = destination;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getMiddlebox() {
		return middlebox;
	}

	public void setMiddlebox(String middlebox) {
		this.middlebox = middlebox;
	}

}