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

com.autonomy.nonaci.indexing.impl.StringPostDataImpl Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
 * (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;

/**
 * This implementation of the {@link com.autonomy.nonaci.indexing.PostData} interface can be used to send {@link
 * java.lang.String} objects. 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 string 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 StringPostDataImpl extends PostDataImpl {

    public StringPostDataImpl(final String string) {
        this(string, null);
    }

    public StringPostDataImpl(final String string, final String charset) {
        super(string, charset);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy