Make Headers PREFIX Constants Public

**cherry-pick to 5.0.x**

* Make `IpHeaders` prefix as `public` as well
This commit is contained in:
Gary Russell
2018-08-24 15:36:36 -04:00
committed by Artem Bilan
parent df6674c2ec
commit 5ab7d24934
4 changed files with 40 additions and 30 deletions

View File

@@ -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";