Searched refs:DataSource (Results 1 - 25 of 54) sorted by relevance

123

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/
H A DMultipartDataSource.java36 import javax.activation.DataSource;
39 * MultipartDataSource is a <code>DataSource</code> that contains body
53 * @see javax.activation.DataSource
56 public interface MultipartDataSource extends DataSource {
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DDataContentHandler.java33 import javax.activation.DataSource;
69 * @param ds The DataSource representing the data to be converted.
75 public Object getTransferData(DataFlavor df, DataSource ds)
83 * @param ds The DataSource representing the data to be converted.
87 public Object getContent(DataSource ds) throws IOException;
H A DCommandMap.java105 * The <code>DataSource</code> provides extra information, such as
112 * @param ds a DataSource for the data
116 public CommandInfo[] getPreferredCommands(String mimeType, DataSource ds) {
133 * The <code>DataSource</code> provides extra information, such as
140 * @param ds a DataSource for the data
144 public CommandInfo[] getAllCommands(String mimeType, DataSource ds) {
160 * The <code>DataSource</code> provides extra information, such as
168 * @param ds a DataSource for the data
173 DataSource ds) {
193 * The <code>DataSource</cod
[all...]
H A DDataSource.java33 * The DataSource interface provides the JavaBeans Activation Framework
42 public interface DataSource { interface
70 * DataSource implementation can not determine the data type.
H A DDataHandler.java71 * @see javax.activation.DataSource
80 // DataSource constructor or the object constructor.
81 private DataSource dataSource = null;
82 private DataSource objDataSource = null;
86 // DataSource.
109 * specified DataSource. The data exists in a byte stream form.
110 * The DataSource will provide an InputStream to access the data.
112 * @param ds the DataSource
114 public DataHandler(DataSource ds) {
158 * Return the DataSource associate
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DStreamingDataHandler.java30 import javax.activation.DataSource;
66 public StreamingDataHandler(DataSource dataSource) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DDataHandlerDataSource.java28 import javax.activation.DataSource;
35 * {@link DataSource} impl using a DataHandler
39 public class DataHandlerDataSource implements DataSource {
H A DDataSourceStreamingDataHandler.java30 import javax.activation.DataSource;
40 public DataSourceStreamingDataHandler(DataSource ds) {
H A DXmlDataContentHandler.java32 import javax.activation.DataSource;
64 public Object getTransferData(DataFlavor df, DataSource ds)
78 public Object getContent(DataSource ds) throws IOException {
85 "Cannot convert DataSource with content type \""
101 if (!(obj instanceof DataSource || obj instanceof Source || obj instanceof String)) {
103 ". XmlDataContentHandler can only convert DataSource|Source|String to XML.");
124 Source source = (obj instanceof DataSource)
125 ? (Source)getContent((DataSource)obj) : (Source)obj;
H A DMIMEPartStreamingDataHandler.java30 import javax.activation.DataSource;
77 private static final class StreamingDataSource implements DataSource {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDataSource.java35 public interface DataSource { interface
H A DRandomAccessFileDataSource.java30 public class RandomAccessFileDataSource implements DataSource {
/openjdk7/jdk/src/share/classes/javax/sql/
H A DDataSource.java34 * <code>DataSource</code> object represents. An alternative to the
35 * <code>DriverManager</code> facility, a <code>DataSource</code> object
37 * the <code>DataSource</code> interface will typically be
41 * The <code>DataSource</code> interface is implemented by a driver vendor.
57 * A <code>DataSource</code> object has properties that can be modified
63 * A driver that is accessed via a <code>DataSource</code> object does not
65 * <code>DataSource</code> object is retrieved though a lookup operation
67 * implementation, the connection obtained through a <code>DataSource</code>
74 public interface DataSource extends CommonDataSource,Wrapper { interface in inherits:CommonDataSource,Wrapper
78 * this <code>DataSource</cod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DDataSourceSource.java34 import javax.activation.DataSource;
55 private final DataSource source;
72 public DataSourceSource(DataSource source) throws MimeTypeParseException {
120 public DataSource getDataSource() {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DByteArrayDataSource.java28 import javax.activation.DataSource;
34 * {@link DataSource} backed by a byte buffer.
38 public final class ByteArrayDataSource implements DataSource {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DMimePartDataSource.java37 import javax.activation.DataSource;
42 * A utility class that implements a DataSource out of
48 public final class MimePartDataSource implements DataSource {
52 * Constructor, that constructs a DataSource from a MimeBodyPart.
87 * DataSource method to return an output stream. <p>
96 * Returns the content-type of this DataSource. <p>
106 * DataSource method to return a name. <p>
H A DMimePullMultipart.java33 import javax.activation.DataSource;
48 private DataSource dataSource = null;
53 public MimePullMultipart(DataSource ds, ContentType ct)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DStreamingDataHandler.java29 import javax.activation.DataSource;
63 public StreamingDataHandler(DataSource dataSource) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DByteArrayDataSource.java32 import javax.activation.DataSource;
35 * {@link DataSource} backed by a byte buffer.
39 public final class ByteArrayDataSource implements DataSource {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DXmlDataContentHandler.java76 public Object getTransferData(DataFlavor flavor, DataSource dataSource)
90 public Object getContent(DataSource dataSource) throws IOException {
109 if (obj instanceof DataSource) {
111 transformer.transform((Source) getContent((DataSource)obj), result);
H A DFastInfosetDataContentHandler.java67 public Object getTransferData(DataFlavor flavor, DataSource dataSource)
84 public Object getContent(DataSource dataSource) throws IOException {
H A DGifDataContentHandler.java66 public Object getTransferData(DataFlavor df, DataSource ds)
76 public Object getContent(DataSource ds) throws IOException {
H A DMultipartDataContentHandler.java57 public Object getTransferData(DataFlavor df, DataSource ds) {
69 public Object getContent(DataSource ds) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DDataSourceDispatch.java40 import javax.activation.DataSource;
50 public class DataSourceDispatch extends DispatchImpl<DataSource> {
60 Packet createPacket(DataSource arg) {
64 throw new IllegalArgumentException("DataSource use is not allowed in Service.Mode.PAYLOAD\n");
72 DataSource toReturnValue(Packet response) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DXMLProviderArgumentBuilder.java37 import javax.activation.DataSource;
66 if(model.datatype== DataSource.class)
86 private static final class DataSourceParameter extends XMLProviderArgumentBuilder<DataSource> {
92 public DataSource getParameter(Packet packet) {
99 public Message getResponseMessage(DataSource ds) {

Completed in 109 milliseconds

123