1 /* 2 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 3 */ 4 /* 5 * $Id: C14NMethodParameterSpec.java,v 1.3 2005/05/10 16:40:17 mullan Exp $ 6 */ 7 package javax.xml.crypto.dsig.spec; 8 9 import javax.xml.crypto.dsig.CanonicalizationMethod; 10 11 /** 12 * A specification of algorithm parameters for a {@link CanonicalizationMethod} 13 * Algorithm. The purpose of this interface is to group (and provide type 14 * safety for) all canonicalization (C14N) parameter specifications. All 15 * canonicalization parameter specifications must implement this interface. 16 * 17 * @author Sean Mullan 18 * @author JSR 105 Expert Group 19 * @since 1.6 20 * @see CanonicalizationMethod 21 */ 22 public interface C14NMethodParameterSpec extends TransformParameterSpec {} 23