/* $Id: IOutputConnector.java 998081 2010-09-17 11:33:15Z kwright $ */ /** * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.manifoldcf.agents.interfaces; import org.apache.manifoldcf.core.interfaces.*; import org.apache.manifoldcf.agents.interfaces.*; import java.io.*; import java.util.*; /** This interface describes an instance of a connection between an engine that needs to output documents, * and an output connector. * * Each instance of this interface is used in only one thread at a time. Connection Pooling * on these kinds of objects is performed by the factory which instantiates connector objects * from symbolic names and config parameters, and is pooled by these parameters. That is, a pooled connector * handle is used only if all the connection parameters for the handle match. * * Implementers of this interface should provide a default constructor which has this signature: * * xxx(); * * Connector instances are either configured or not. If configured, they will persist in a pool, and be * reused multiple times. Certain methods of a connector may be called before the connector is * configured. This includes basically all methods that permit inspection of the connector's * capabilities. The complete list is: * * * The purpose of the output connector is to allow documents to be sent to their final destination (as far as * Connector Framework is concerned). * */ public interface IOutputConnector extends IPipelineConnector { public static final String _rcsid = "@(#)$Id: IOutputConnector.java 998081 2010-09-17 11:33:15Z kwright $"; /** Return a list of activities that this connector generates. * The connector does NOT need to be connected before this method is called. *@return the set of activities. */ public String[] getActivitiesList(); /** Request arbitrary connector information. * This method is called directly from the API in order to allow API users to perform any one of several connector-specific * queries. *@param output is the response object, to be filled in by this method. *@param command is the command, which is taken directly from the API request. *@return true if the resource is found, false if not. In either case, output may be filled in. */ public boolean requestInfo(Configuration output, String command) throws ManifoldCFException; /** Remove a document using the connector. * Note that the last outputDescription is included, since it may be necessary for the connector to use such information to know how to properly remove the document. *@param documentURI is the URI of the document. The URI is presumed to be the unique identifier which the output data store will use to process * and serve the document. This URI is constructed by the repository connector which fetches the document, and is thus universal across all output connectors. *@param outputDescription is the last description string that was constructed for this document by the getOutputDescription() method above. *@param activities is the handle to an object that the implementer of an output connector may use to perform operations, such as logging processing activity. */ public void removeDocument(String documentURI, String outputDescription, IOutputRemoveActivity activities) throws ManifoldCFException, ServiceInterruption; /** Notify the connector of a completed job. * This is meant to allow the connector to flush any internal data structures it has been keeping around, or to tell the output repository that this * is a good time to synchronize things. It is called whenever a job is either completed or aborted. *@param activities is the handle to an object that the implementer of an output connector may use to perform operations, such as logging processing activity. */ public void noteJobComplete(IOutputNotifyActivity activities) throws ManifoldCFException, ServiceInterruption; /** Notify the connector that all records associated with this connection have been removed. * This method allows the connector to remove any internal data storage that is associated with records sent to the index on * behalf of a connection. It should not attempt to communicate with the output index. */ public void noteAllRecordsRemoved() throws ManifoldCFException; // UI support methods are inherited from IConnector and IPipelineConnector. }