Skip to content

Commit

Permalink
Added some setters to the Autorisation table.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Børlum committed Apr 16, 2011
1 parent ae7e41b commit 21731e8
Showing 1 changed file with 37 additions and 1 deletion.
Expand Up @@ -47,18 +47,54 @@ public class Autorisation extends View {

protected String autorisationsnummer;

public String getAutorisationsnummer() {

return autorisationsnummer;
}

protected String cpr;

public String getCPR() {

return cpr;
}

protected String fornavn;

public String getFornave() {

return fornavn;
}

protected String efternavn;

protected String uddannelsesKode;
public String getEfternavn() {

return efternavn;
}

public String getUddannelseskode() {

return uddannelseskode;
}

@Temporal(TIMESTAMP)
protected Date validFrom;

public Date getValidFrom() {

return validFrom;
}

@Temporal(TIMESTAMP)
protected Date validTo;

public Date getValidTo() {

return validTo;
}

@XmlTransient
@Temporal(TIMESTAMP)
private Date modifiedDate;
Expand All @@ -72,7 +108,7 @@ public BigInteger getRecordID() {
@Override
public String getId() {

return id;
return autorisationsnummer;
}

@Override
Expand Down

0 comments on commit 21731e8

Please sign in to comment.