~ubuntu-branches/ubuntu/karmic/libxml-security-java/karmic

« back to all changes in this revision

Viewing changes to src/javax/xml/crypto/dsig/spec/SignatureMethodParameterSpec.java

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2008-01-18 14:56:26 UTC
  • Revision ID: james.westby@ubuntu.com-20080118145626-makoebepbd9mb0jf
Tags: upstream-1.4.1
ImportĀ upstreamĀ versionĀ 1.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2005 The Apache Software Foundation.
 
3
 *
 
4
 *  Licensed under the Apache License, Version 2.0 (the "License");
 
5
 *  you may not use this file except in compliance with the License.
 
6
 *  You may obtain a copy of the License at
 
7
 *
 
8
 *      http://www.apache.org/licenses/LICENSE-2.0
 
9
 *
 
10
 *  Unless required by applicable law or agreed to in writing, software
 
11
 *  distributed under the License is distributed on an "AS IS" BASIS,
 
12
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
13
 *  See the License for the specific language governing permissions and
 
14
 *  limitations under the License.
 
15
 *
 
16
 */
 
17
/*
 
18
 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
 
19
 */
 
20
/*
 
21
 * $Id: SignatureMethodParameterSpec.java 375655 2006-02-07 18:35:54 +0000 (Tue, 07 Feb 2006) mullan $
 
22
 */
 
23
package javax.xml.crypto.dsig.spec;
 
24
 
 
25
import javax.xml.crypto.dsig.SignatureMethod;
 
26
import java.security.spec.AlgorithmParameterSpec;
 
27
 
 
28
/**
 
29
 * A specification of algorithm parameters for an XML {@link SignatureMethod} 
 
30
 * algorithm. The purpose of this interface is to group (and provide type 
 
31
 * safety for) all signature method parameter specifications. All signature
 
32
 * method parameter specifications must implement this interface.
 
33
 *
 
34
 * @author Sean Mullan
 
35
 * @author JSR 105 Expert Group
 
36
 * @see SignatureMethod
 
37
 */
 
38
public interface SignatureMethodParameterSpec extends AlgorithmParameterSpec {}