com.autonomy.nonaci.indexing.impl.FilePostDataImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of indexing-api Show documentation
Show all versions of indexing-api Show documentation
API for indexing into IDOL using Java
/*
* (c) Copyright 2008-2015 Micro Focus or one of its affiliates.
*
* Licensed under the MIT License (the "License"); you may not use this file
* except in compliance with the License.
*
* The only warranties for products and services of Micro Focus and its affiliates
* and licensors ("Micro Focus") are as may be set forth in the express warranty
* statements accompanying such products and services. Nothing herein should be
* construed as constituting an additional warranty. Micro Focus shall not be
* liable for technical or editorial errors or omissions contained herein. The
* information contained herein is subject to change without notice.
*/
package com.autonomy.nonaci.indexing.impl;
import org.apache.http.entity.ContentType;
import java.io.File;
import java.nio.charset.Charset;
/**
* This implementation of the {@link com.autonomy.nonaci.indexing.PostData} interface can be used to send the contents
* of a file. If the initial request fails and the underlying HTTP implementation supports retires, this implementation
* is repeatable. The content length is worked out from the length of the file and the content type
* defaults to text/plain; charset=UTF-8.
*
* @author boba
* @deprecated As of 2.0.0, use {@link PostDataImpl} instead
*/
@Deprecated
public class FilePostDataImpl extends PostDataImpl {
public FilePostDataImpl(final File data) {
this(data, ContentType.create("text/plain", Charset.forName("UTF-8")));
}
public FilePostDataImpl(final File data, final String contentType) {
super(data, contentType);
}
public FilePostDataImpl(final File data, final ContentType contentType) {
super(data, contentType);
}
}