0N/A/*
0N/A * reserved comment block
0N/A * DO NOT REMOVE OR ALTER!
0N/A */
0N/A/*
0N/A * Copyright 2003-2004 The Apache Software Foundation.
0N/A *
0N/A * Licensed under the Apache License, Version 2.0 (the "License");
0N/A * you may not use this file except in compliance with the License.
0N/A * You may obtain a copy of the License at
0N/A *
0N/A * http://www.apache.org/licenses/LICENSE-2.0
0N/A *
0N/A * Unless required by applicable law or agreed to in writing, software
0N/A * distributed under the License is distributed on an "AS IS" BASIS,
0N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0N/A * See the License for the specific language governing permissions and
0N/A * limitations under the License.
0N/A *
0N/A */
0N/Apackage com.sun.org.apache.xml.internal.security.encryption;
0N/A
0N/A
0N/A
0N/A
0N/A/**
0N/A * A container for <code>ds:Transform</code>s.
0N/A * <p>
0N/A * It is defined as follows:
0N/A * <xmp>
0N/A * <complexType name='TransformsType'>
0N/A * <sequence>
0N/A * <element ref='ds:Transform' maxOccurs='unbounded'/>
0N/A * </sequence>
0N/A * </complexType>
0N/A * </xmp>
0N/A *
0N/A * @author Axl Mattheus
0N/A * @see com.sun.org.apache.xml.internal.security.encryption.CipherReference
0N/A */
0N/Apublic interface Transforms {
0N/A /**
0N/A * Returns an <code>Iterator</code> over all the transforms contained in
0N/A * this transform list.
0N/A *
0N/A * @return all transforms.
0N/A */
0N/A /* Iterator getTransforms(); */
0N/A
0N/A /**
0N/A * Adds a <code>ds:Transform</code> to the list of transforms.
0N/A *
0N/A * @param transform.
0N/A */
0N/A /* void addTransform(Transform transform); */
0N/A
0N/A /**
0N/A * Removes the specified transform.
0N/A *
0N/A * @param transform.
0N/A */
0N/A /* void removeTransform(Transform transform); */
0N/A
0N/A /**
0N/A * Temporary method to turn the XMLEncryption Transforms class
0N/A * into a DS class. The main logic is currently implemented in the
0N/A * DS class, so we need to get to get the base class.
0N/A * <p>
0N/A * <b>Note</b> This will be removed in future versions
0N/A * @return
0N/A */
0N/A
0N/A com.sun.org.apache.xml.internal.security.transforms.Transforms getDSTransforms();
0N/A
0N/A}