Move SQLHelper from the database to the util package
[remote/remote-ws.git] / src / authentication / Credential.java
blob94a9a7309e49758dc19d00dfa60d6c43b1ce069c
1 package authentication;
3 import java.io.Serializable;
5 public class Credential implements Serializable{
7 private static final long serialVersionUID = -1425162133341080154L;
8 private String label, value;
9 private boolean hideValue;
11 public Credential() {
12 super();
13 // TODO Auto-generated constructor stub
16 public Credential(String label, boolean hideValue) {
17 super();
18 // TODO Auto-generated constructor stub
19 this.label = label;
20 this.value = null;
21 this.hideValue = hideValue;
23 public boolean isHideValue() {
24 return hideValue;
26 public void setHideValue(boolean hideValue) {
27 this.hideValue = hideValue;
30 public String getLabel() {
31 return label;
33 public void setLabel(String label) {
34 this.label = label;
36 public String getValue() {
37 return value;
39 public void setValue(String value) {
40 this.value = value;