Skip to content

Commit e82dfb0

Browse files
committed
Initial commit (#326).
1 parent 575045c commit e82dfb0

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
package org.gitlab4j.api.models;
2+
3+
import javax.xml.bind.annotation.XmlAccessType;
4+
import javax.xml.bind.annotation.XmlAccessorType;
5+
import javax.xml.bind.annotation.XmlRootElement;
6+
7+
@XmlRootElement
8+
@XmlAccessorType(XmlAccessType.FIELD)
9+
public class Variable {
10+
11+
private String key;
12+
private String value;
13+
14+
public String getKey() {
15+
return key;
16+
}
17+
18+
public void setKey(String key) {
19+
this.key = key;
20+
}
21+
22+
public String getValue() {
23+
return value;
24+
}
25+
26+
public void setValue(String value) {
27+
this.value = value;
28+
}
29+
}

0 commit comments

Comments
 (0)