blob: dc2b4c5f693bec4b04af1ba10aa4cdd364d68055 (
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
68
69
70
71
|
/*******************************************************************************
* 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.model;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ApiModel(value = "Link")
public class Link {
@ApiModelProperty(required = false, hidden = true)
private String link;
@ApiModelProperty(required = false, hidden = true)
private String rel;
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
}
public String getRel() {
return rel;
}
public void setRel(String rel) {
this.rel = rel;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((link == null) ? 0 : link.hashCode());
result = prime * result + ((rel == null) ? 0 : rel.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Link other = (Link) obj;
if (link == null) {
if (other.link != null)
return false;
}
else if (!link.equals(other.link))
return false;
if (rel == null) {
if (other.rel != null)
return false;
}
else if (!rel.equals(other.rel))
return false;
return true;
}
}
|