-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLicense.java
More file actions
37 lines (30 loc) · 1.03 KB
/
License.java
File metadata and controls
37 lines (30 loc) · 1.03 KB
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
package io.quicktype;
import java.util.Map;
import com.fasterxml.jackson.annotation.*;
public class License {
private String key;
private String name;
private String spdxID;
private String url;
private String nodeID;
@JsonProperty("key")
public String getKey() { return key; }
@JsonProperty("key")
public void setKey(String value) { this.key = value; }
@JsonProperty("name")
public String getName() { return name; }
@JsonProperty("name")
public void setName(String value) { this.name = value; }
@JsonProperty("spdx_id")
public String getSpdxID() { return spdxID; }
@JsonProperty("spdx_id")
public void setSpdxID(String value) { this.spdxID = value; }
@JsonProperty("url")
public String getURL() { return url; }
@JsonProperty("url")
public void setURL(String value) { this.url = value; }
@JsonProperty("node_id")
public String getNodeID() { return nodeID; }
@JsonProperty("node_id")
public void setNodeID(String value) { this.nodeID = value; }
}