List of usage examples for javax.activation DataSource interface-usage
From source file org.apache.axis.attachments.ManagedMemoryDataSource.java
/**
* This class allows small attachments to be cached in memory, while large ones are
* cached out. It implements a Java Activiation Data source interface.
*
* @author Rick Rineholt
*/
From source file org.taverna.server.master.soap.WrappedWorkflow.java
/** * A data source that knows how to deliver a workflow. * * @author Donal Fellows */ class WorkflowSource implements DataSource {
From source file org.structr.web.entity.File.java
/** * * */ public interface File extends AbstractFile, Indexable, Linkable, JavaScriptSource, CMISInfo, CMISDocumentInfo, Favoritable, DataSource {
From source file com.alvexcore.repo.emails.impl.ExtendedEmailMessage.java
class RepositoryDataSource implements DataSource { ContentService contentService; NodeRef nodeRef; String name; public RepositoryDataSource(NodeRef nodeRef, String name, ContentService contentService) {
From source file com.salesmanager.core.service.order.OrderService.java
class ByteArrayDataSource implements DataSource { byte[] bytes; String contentType; String name; ByteArrayDataSource(String name, String contentType, byte[] bytes) {