package at.gv.egovernment.moa.spss.api.xmlsign; /** * Base class for transformation informations used in signature creation. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface CreateTransformsInfoProfile { /** * Indicates transformation information given explicitly. */ public static final int EXPLICIT_CREATETRANSFORMSINFOPROFILE = 0; /** * Indicates transformation information given as an ID. */ public static final int ID_CREATETRANSFORMSINFOPROFILE = 1; /** * Gets the type of profile information this object contains. * * @return The type of transformation information, either * EXPLICIT_CREATETRANSFORMSINFOPROFILE or * ID_CREATETRANSFORMSINFOPROFILE. */ public int getCreateTransformsInfoProfileType(); }