blob: 6bfe0484a81f0315d963952990181b0633bedf39 (
plain) (
blame)
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
|
/*
*
*/
package org.uic.barcode.ticket.api.spec;
/**
* The Interface IDocumentData.
*
* IDocumentData is the super class of transport documents and customer cards. It provides a token.
*
*/
public interface IDocumentData {
/**
* Gets the token.
*
* @return the token
*/
public IToken getToken();
/**
* Sets the token.
*
* @param token the new token
*/
public void setToken(IToken token);
}
|