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

org.apache.struts.upload.FormFile Maven / Gradle / Ivy

/*
 * $Id: FormFile.java 471754 2006-11-06 14:55:09Z husted $
 *
 * 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.struts.upload;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;

/**
 * 

This interface represents a file that has been uploaded by a client. It * is the only interface or class in upload package which is typically * referenced directly by a Struts application.

*/ public interface FormFile { /** *

Returns the content type for this file.

* * @return A String representing content type. */ public String getContentType(); /** *

Sets the content type for this file.

* * @param contentType The content type for the file. */ public void setContentType(String contentType); /** *

Returns the size of this file.

* * @return The size of the file, in bytes. */ public int getFileSize(); /** *

Sets the file size.

* * @param fileSize The size of the file, in bytes, */ public void setFileSize(int fileSize); /** *

Returns the file name of this file. This is the base name of the * file, as supplied by the user when the file was uploaded.

* * @return The base file name. */ public String getFileName(); /** *

Sets the file name of this file.

* * @param fileName The base file name. */ public void setFileName(String fileName); /** *

Returns the data for the entire file as byte array. Care is needed * when using this method, since a large upload could easily exhaust * available memory. The preferred method for accessing the file data is * {@link #getInputStream() getInputStream}.

* * @return The file data as a byte array. * @throws FileNotFoundException if the uploaded file is not found. * @throws IOException if an error occurred while reading the * file. */ public byte[] getFileData() throws FileNotFoundException, IOException; /** *

Returns an input stream for this file. The caller must close the * stream when it is no longer needed.

* * @throws FileNotFoundException if the uploaded file is not found. * @throws IOException if an error occurred while reading the * file. */ public InputStream getInputStream() throws FileNotFoundException, IOException; /** *

Destroys all content for the uploaded file, including any * underlying data files.

*/ public void destroy(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy