
io.cloudevents.http.vertx.impl.CloudEventsHeaders Maven / Gradle / Ivy
/*
* Copyright 2018-Present The CloudEvents Authors
*
* Licensed 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 io.cloudevents.http.vertx.impl;
import io.cloudevents.core.message.impl.MessageUtils;
import io.vertx.core.http.HttpHeaders;
import java.util.Map;
public class CloudEventsHeaders {
public static final String CE_PREFIX = "ce-";
public static final Map ATTRIBUTES_TO_HEADERS = MessageUtils.generateAttributesToHeadersMapping(v -> {
if (v.equals("datacontenttype")) {
return HttpHeaders.CONTENT_TYPE;
}
return HttpHeaders.createOptimized(CE_PREFIX + v);
});
public static final CharSequence SPEC_VERSION = ATTRIBUTES_TO_HEADERS.get("specversion");
}