blob: 1a797b4798ab53f1f9161d2060f1c1cb473eba25 [file] [log] [blame]
/*
*/
package org.apache.taverna.server.master.interfaces;
/*
* 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.
*/
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import org.apache.taverna.server.master.common.Status;
import org.apache.taverna.server.master.exceptions.BadStateChangeException;
import org.apache.taverna.server.master.exceptions.FilesystemAccessException;
/**
* This represents the assignment of inputs to input ports of the workflow. Note
* that the <tt>file</tt> and <tt>value</tt> properties are never set at the
* same time.
*
* @author Donal Fellows
*/
public interface Input {
/**
* @return The file currently assigned to this input port, or <tt>null</tt>
* if no file is assigned.
*/
@Nullable
public String getFile();
/**
* @return The name of this input port. This may not be changed.
*/
@Nonnull
public String getName();
/**
* @return The value currently assigned to this input port, or <tt>null</tt>
* if no value is assigned.
*/
@Nullable
public String getValue();
/**
* @return The delimiter for the input port, or <tt>null</tt> if the value
* is not to be split.
*/
@Nullable
public String getDelimiter();
/**
* Sets the file to use for this input. This overrides the use of the
* previous file and any set value.
*
* @param file
* The filename to use. Must not start with a <tt>/</tt> or
* contain any <tt>..</tt> segments. Will be interpreted relative
* to the run's working directory.
* @throws FilesystemAccessException
* If the filename is invalid.
* @throws BadStateChangeException
* If the run isn't in the {@link Status#Initialized
* Initialized} state.
*/
public void setFile(String file) throws FilesystemAccessException,
BadStateChangeException;
/**
* Sets the value to use for this input. This overrides the use of the
* previous value and any set file.
*
* @param value
* The value to use.
* @throws BadStateChangeException
* If the run isn't in the {@link Status#Initialized
* Initialized} state.
*/
public void setValue(String value) throws BadStateChangeException;
/**
* Sets (or clears) the delimiter for the input port.
*
* @param delimiter
* The delimiter character, or <tt>null</tt> if the value is not
* to be split.
* @throws BadStateChangeException
* If the run isn't in the {@link Status#Initialized
* Initialized} state.
*/
@Nullable
public void setDelimiter(String delimiter) throws BadStateChangeException;
}