Make Headers PREFIX Constants Public
**cherry-pick to 5.0.x** * Make `IpHeaders` prefix as `public` as well
This commit is contained in:
committed by
Artem Bilan
parent
df6674c2ec
commit
5ab7d24934
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2010 the original author or authors.
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
@@ -18,11 +18,12 @@ package org.springframework.integration.http;
|
||||
|
||||
/**
|
||||
* @author Mark Fisher
|
||||
* @author Gary Russell
|
||||
* @since 1.0.2
|
||||
*/
|
||||
public abstract class HttpHeaders {
|
||||
|
||||
private static final String PREFIX = "http_";
|
||||
public static final String PREFIX = "http_";
|
||||
|
||||
public static final String REQUEST_URL = PREFIX + "requestUrl";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user