All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.activation.CommandObject Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright (c) 1997, 2019 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package javax.activation;

import java.io.IOException;

/**
 * JavaBeans components that are Jakarta Activation aware implement
 * this interface to find out which command verb they're being asked
 * to perform, and to obtain the DataHandler representing the
 * data they should operate on.  JavaBeans that don't implement
 * this interface may be used as well.  Such commands may obtain
 * the data using the Externalizable interface, or using an
 * application-specific method.
 */
public interface CommandObject {

    /**
     * Initialize the Command with the verb it is requested to handle
     * and the DataHandler that describes the data it will
     * operate on. NOTE: it is acceptable for the caller
     * to pass null as the value for DataHandler.
     *
     * @param verb The Command Verb this object refers to.
     * @param dh The DataHandler.
     * @exception	IOException	for failures accessing data
     */
    public void setCommandContext(String verb, DataHandler dh)
						throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy