org.apache.olingo.client.api.communication.response.ODataResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of odata-v4-lib Show documentation
Show all versions of odata-v4-lib Show documentation
Repackaged OData V4 Olingo Library
/*
* 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.olingo.client.api.communication.response;
import java.io.InputStream;
import java.util.Collection;
import java.util.Map;
import org.apache.http.HttpResponse;
import org.apache.olingo.client.api.communication.request.batch.ODataBatchLineIterator;
/**
* Abstract representation of an OData response.
*/
public interface ODataResponse {
/**
* Gets header names.
*
* @return response header names.
*/
Collection getHeaderNames();
/**
* Gets header value of the given header.
*
* @param name header to be retrieved.
* @return response header value.
*/
Collection getHeader(final String name);
/**
* Gets 'ETag' header value.
*
* @return ETag header value, if provided
*/
String getETag();
/**
* Gets the content type.
*
* @return content type
*/
String getContentType();
/**
* Gets status code.
*
* @return status code.
*/
int getStatusCode();
/**
* Gets status message.
*
* @return status message.
*/
String getStatusMessage();
/**
* Gets response body as InputStream.
*
* @return response body input stream.
*/
InputStream getRawResponse();
/**
* Initializes OData response from HTTP response.
*
* @param res HTTP response.
* @return OData response;
*/
ODataResponse initFromHttpResponse(HttpResponse res);
/**
* Initializes response from batch response item.
*
* @param responseLine response line.
* @param headers response headers.
* @param batchLineIterator batch line iterator.
* @param boundary batch boundary.
* @return OData response.
*/
ODataResponse initFromBatch(
final Map.Entry responseLine,
final Map> headers,
final ODataBatchLineIterator batchLineIterator,
final String boundary);
/**
* Initializes response from an enclosed HTTP response.
*
* @param part enclosed HTTP response.
* @return OData response.
*/
ODataResponse initFromEnclosedPart(InputStream part);
/**
* Close the underlying message entity input stream (if available and open) as well as releases any other resources
* associated with the response.
*
* This operation is idempotent, i.e. it can be invoked multiple times with the same effect which also means that
* calling the close() method on an already closed message instance is legal and has no further effect.
*
* The close() method should be invoked on all instances that contain an un-consumed entity input stream to ensure the
* resources associated with the instance are properly cleaned-up and prevent potential memory leaks. This is typical
* for client-side scenarios where application layer code processes only the response headers and ignores the response
* entity.
*/
void close();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy