package at.gv.egovernment.moa.spss.api.impl; import java.util.ArrayList; import java.util.Collections; import java.util.List; import at.gv.egovernment.moa.spss.api.xmlverify.ReferenceInfo; /** * Default implementation of . * * @author Fatemeh Philippi * @version $Id$ */ public class VerifyTransformsDataImpl implements ReferenceInfo { /** Information about the transformations contained in the signature. */ private List verifyTransformsInfoProfiles; /** * Sets the information about the transformations contained in the signature. * * @param verifyTransformsInfoProfiles The profiles containing transformation * information. */ public void setVerifyTransformsInfoProfiles(List verifyTransformsInfoProfiles) { this.verifyTransformsInfoProfiles = verifyTransformsInfoProfiles != null ? Collections.unmodifiableList( new ArrayList(verifyTransformsInfoProfiles)) : null; } public List getVerifyTransformsInfoProfiles() { return verifyTransformsInfoProfiles; } }