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 ReferenceInfo. * * @author Fatemeh Philippi * @version $Id$ */ public class ReferenceInfoImpl implements ReferenceInfo { /** Profile containing the transforms allowed in the signature. */ private List verifyTransformsInfoProfiles; /** * Sets the transforms profile used for verifying the transforms contained * in the signature. * * @param verifyTransformsInfoProfiles The profiles containing the transforms * allowed in the signature. */ public void setVerifyTransformsInfoProfiles(List verifyTransformsInfoProfiles) { this.verifyTransformsInfoProfiles = verifyTransformsInfoProfiles != null ? Collections.unmodifiableList( new ArrayList(verifyTransformsInfoProfiles)) : null; } public List getVerifyTransformsInfoProfiles() { return verifyTransformsInfoProfiles; } }