summaryrefslogtreecommitdiffstats
path: root/src/org/uic/ticket/api/spec/IDocumentData.java
blob: 963d5458bc11c6b3f23637b80bcfd3f61e9dda17 (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.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);
	
	
	
	

}