blob: bbc0bd9336350cfbfe995f397680907f5b03c2dc [file] [log] [blame]
/*
* 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.server.api.etag;
import java.util.Collection;
/**
* Used for ETag-related tasks.
*/
public interface ETagHelper {
/**
* <p>Checks the preconditions of a read request with a given ETag value
* against the If-Match and If-None-Match HTTP headers.</p>
* <p>If the given ETag value is not matched by the ETag information in the If-Match headers,
* and there are ETags in the headers to be matched, a "Precondition Failed" exception is
* thrown.</p>
* <p>If the given ETag value is matched by the ETag information in the If-None-Match headers,
* <code>true</code> is returned, and applications are supposed to return an empty response
* with a "Not Modified" status code and the ETag header, <code>false</code> otherwise.</p>
* <p>All matching uses weak comparison as described in
* <a href="https://www.ietf.org/rfc/rfc7232.txt">RFC 7232</a>, section 2.3.2.</p>
* <p>This method does not nothing and returns <code>false</code> if the ETag value is
* <code>null</code>.</p>
* @param eTag the ETag value to match
* @param ifMatchHeaders the If-Match header values
* @param ifNoneMatchHeaders the If-None-Match header values
* @return whether a "Not Modified" response should be used
*/
public boolean checkReadPreconditions(String eTag,
Collection<String> ifMatchHeaders, Collection<String> ifNoneMatchHeaders)
throws PreconditionException;
/**
* <p>Checks the preconditions of a change request (with HTTP methods PUT, PATCH, or DELETE)
* with a given ETag value against the If-Match and If-None-Match HTTP headers.</p>
* <p>If the given ETag value is not matched by the ETag information in the If-Match headers,
* and there are ETags in the headers to be matched, or
* if the given ETag value is matched by the ETag information in the If-None-Match headers,
* a "Precondition Failed" exception is thrown.</p>
* <p>All matching uses weak comparison as described in
* <a href="https://www.ietf.org/rfc/rfc7232.txt">RFC 7232</a>, section 2.3.2.</p>
* <p>This method does not nothing if the ETag value is <code>null</code>.</p>
* @param eTag the ETag value to match
* @param ifMatchHeaders the If-Match header values
* @param ifNoneMatchHeaders the If-None-Match header values
*/
public void checkChangePreconditions(String eTag,
Collection<String> ifMatchHeaders, Collection<String> ifNoneMatchHeaders)
throws PreconditionException;
}