1 /* 2 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 3 */ 4 /* 5 * $Id: SignatureMethodParameterSpec.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.SignatureMethod; 10 import java.security.spec.AlgorithmParameterSpec; 11 12 /** 13 * A specification of algorithm parameters for an XML {@link SignatureMethod} 14 * algorithm. The purpose of this interface is to group (and provide type 15 * safety for) all signature method parameter specifications. All signature 16 * method parameter specifications must implement this interface. 17 * 18 * @author Sean Mullan 19 * @author JSR 105 Expert Group 20 * @since 1.6 21 * @see SignatureMethod 22 */ 23 public interface SignatureMethodParameterSpec extends AlgorithmParameterSpec {} 24