blob: d8693cdfd0cc511ff97806167300c40b18ffe1f2 [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.juneau.http.header;
import java.util.function.*;
import org.apache.juneau.http.annotation.*;
/**
* Represents a parsed <l> Proxy-Authenticate</l> HTTP response header.
*
* <p>
* Request authentication to access the proxy.
*
* <h5 class='figure'>Example</h5>
* <p class='bcode w800'>
* Proxy-Authenticate: Basic
* </p>
*
* <h5 class='topic'>RFC2616 Specification</h5>
*
* The Proxy-Authenticate response-header field MUST be included as part of a 407 (Proxy Authentication Required)
* response.
* The field value consists of a challenge that indicates the authentication scheme and parameters applicable to the
* proxy for this Request-URI.
*
* <p class='bcode w800'>
* Proxy-Authenticate = "Proxy-Authenticate" ":" 1#challenge
* </p>
*
* <p>
* The HTTP access authentication process is described in "HTTP Authentication: Basic and Digest Access Authentication".
* Unlike WWW-Authenticate, the Proxy-Authenticate header field applies only to the current connection and SHOULD NOT
* be passed on to downstream clients.
* However, an intermediate proxy might need to obtain its own credentials by requesting them from the downstream
* client, which in some circumstances will appear as if the proxy is forwarding the Proxy-Authenticate header field.
*
* <ul class='seealso'>
* <li class='extlink'>{@doc ExtRFC2616}
* </ul>
*/
@Header("Proxy-Authenticate")
public class ProxyAuthenticate extends BasicStringHeader {
private static final long serialVersionUID = 1L;
private static final String NAME = "Proxy-Authenticate";
/**
* Convenience creator.
*
* @param value
* The header value.
* <br>Can be <jk>null</jk>.
* @return A new header bean, or <jk>null</jk> if the value is <jk>null</jk>.
*/
public static ProxyAuthenticate of(String value) {
if (value == null)
return null;
return new ProxyAuthenticate(value);
}
/**
* Convenience creator with delayed value.
*
* <p>
* Header value is re-evaluated on each call to {@link #getValue()}.
*
* @param value
* The supplier of the header value.
* <br>Can be <jk>null</jk>.
* @return A new header bean, or <jk>null</jk> if the value is <jk>null</jk>.
*/
public static ProxyAuthenticate of(Supplier<String> value) {
if (value == null)
return null;
return new ProxyAuthenticate(value);
}
/**
* Constructor.
*
* @param value
* The header value.
* <br>Can be <jk>null</jk>.
*/
public ProxyAuthenticate(String value) {
super(NAME, value);
}
/**
* Constructor with delayed value.
*
* <p>
* Header value is re-evaluated on each call to {@link #getValue()}.
*
* @param value
* The supplier of the header value.
* <br>Can be <jk>null</jk>.
*/
public ProxyAuthenticate(Supplier<String> value) {
super(NAME, value);
}
}