token-import: first iteration

This commit is contained in:
Vincent Breitmoser
2017-09-04 23:54:56 +02:00
parent 21bc6f12f0
commit af7d36c038
35 changed files with 1098 additions and 77 deletions

View File

@@ -587,6 +587,11 @@ public class SecurityTokenHelper {
return getData(0x00, 0x4F);
}
public String getUrl() throws IOException {
byte[] data = getData(0x5F, 0x50);
return new String(data);
}
public String getUserId() throws IOException {
return getHolderName(getData(0x00, 0x65));
}