org.codehaus.httpcache4j.payload.FilePayload Maven / Gradle / Ivy
/*
* Copyright (c) 2008, The Codehaus. All Rights Reserved.
*
* Licensed 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.codehaus.httpcache4j.payload;
import org.apache.commons.lang.Validate;
import org.codehaus.httpcache4j.MIMEType;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;
public class FilePayload implements Payload {
protected File file;
private MIMEType mimeType;
public FilePayload(File file, MIMEType mimeType) {
Validate.notNull(file, "File may not be null");
Validate.notNull(mimeType, "Mime type may not be null");
this.file = file;
this.mimeType = mimeType;
}
public MIMEType getMimeType() {
return mimeType;
}
public InputStream getInputStream() {
try {
return new FileInputStream(file);
}
catch (FileNotFoundException e) {
throw new RuntimeException(e.getMessage(), e);
}
}
public boolean isAvailable() {
return file.exists() && file.canRead();
}
public boolean isTransient() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy