1 /* 2 * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 3 */ 4 /* 5 * $Id: Data.java,v 1.4 2005/05/10 15:47:41 mullan Exp $ 6 */ 7 package javax.xml.crypto; 8 9 import javax.xml.crypto.dsig.Transform; 10 11 /** 12 * An abstract representation of the result of dereferencing a 13 * {@link URIReference} or the input/output of subsequent {@link Transform}s. 14 * The primary purpose of this interface is to group and provide type safety 15 * for all <code>Data</code> subtypes. 16 * 17 * @author Sean Mullan 18 * @author JSR 105 Expert Group 19 * @since 1.6 20 */ 21 public interface Data { } 22