0N/A/*
661N/A * reserved comment block
661N/A * DO NOT REMOVE OR ALTER!
0N/A */
0N/A/*
661N/A * Copyright 2005 The Apache Software Foundation.
661N/A *
661N/A * Licensed under the Apache License, Version 2.0 (the "License");
661N/A * you may not use this file except in compliance with the License.
661N/A * You may obtain a copy of the License at
661N/A *
661N/A * http://www.apache.org/licenses/LICENSE-2.0
661N/A *
661N/A * Unless required by applicable law or agreed to in writing, software
661N/A * distributed under the License is distributed on an "AS IS" BASIS,
661N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
661N/A * See the License for the specific language governing permissions and
661N/A * limitations under the License.
661N/A *
661N/A */
661N/A/*
2362N/A * Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved.
661N/A */
661N/A/*
661N/A * $Id: DOMEnvelopedTransform.java,v 1.2 2008/07/24 15:20:32 mullan Exp $
0N/A */
0N/Apackage org.jcp.xml.dsig.internal.dom;
0N/A
0N/Aimport java.security.InvalidAlgorithmParameterException;
0N/Aimport javax.xml.crypto.dsig.spec.TransformParameterSpec;
0N/A
0N/A/**
0N/A * DOM-based implementation of Enveloped Signature Transform.
0N/A * (Uses Apache XML-Sec Transform implementation)
0N/A *
0N/A * @author Sean Mullan
0N/A */
0N/Apublic final class DOMEnvelopedTransform extends ApacheTransform {
0N/A
0N/A public void init(TransformParameterSpec params)
0N/A throws InvalidAlgorithmParameterException {
0N/A if (params != null) {
0N/A throw new InvalidAlgorithmParameterException("params must be null");
0N/A }
0N/A }
0N/A}