blob: 963d5458bc11c6b3f23637b80bcfd3f61e9dda17 (
plain) (
tree)
|
|
/*
*
*/
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);
}
|