capital.scalable.restdocs.request.RequestHeaderSnippet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-auto-restdocs-core Show documentation
Show all versions of spring-auto-restdocs-core Show documentation
Spring Auto REST Docs is an extension to Spring REST Docs
The newest version!
/*-
* #%L
* Spring Auto REST Docs Core
* %%
* Copyright (C) 2015 - 2021 Scalable Capital GmbH
* %%
* 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.
* #L%
*/
package capital.scalable.restdocs.request;
import static capital.scalable.restdocs.SnippetRegistry.AUTO_REQUEST_HEADERS;
import org.springframework.core.MethodParameter;
import org.springframework.restdocs.operation.Operation;
import org.springframework.web.bind.annotation.RequestHeader;
public class RequestHeaderSnippet extends AbstractParameterSnippet {
private final boolean failOnUndocumentedParams;
public RequestHeaderSnippet() {
this(false);
}
public RequestHeaderSnippet(boolean failOnUndocumentedParams) {
super(AUTO_REQUEST_HEADERS, null);
this.failOnUndocumentedParams = failOnUndocumentedParams;
}
public RequestHeaderSnippet failOnUndocumentedParams(boolean failOnUndocumentedParams) {
return new RequestHeaderSnippet(failOnUndocumentedParams);
}
@Override
protected boolean isRequired(MethodParameter param, RequestHeader annot) {
// Spring disallows null for primitive types
// For types wrapped in Optional or nullable Kotlin types, the required flag in
// the annotation is ignored by Spring.
return param.getParameterType().isPrimitive() || (!param.isOptional() && annot.required());
}
@Override
protected String getPath(RequestHeader annot) {
return annot.value();
}
protected RequestHeader getAnnotation(MethodParameter param) {
return param.getParameterAnnotation(RequestHeader.class);
}
@Override
public String getHeaderKey(Operation operation) {
return "request-headers";
}
@Override
protected boolean shouldFailOnUndocumentedParams() {
return failOnUndocumentedParams;
}
@Override
protected String getDefaultValue(final RequestHeader annotation) {
return annotation.defaultValue();
}
@Override
protected String[] getTranslationKeys() {
return new String[]{
"th-header",
"th-type",
"th-optional",
"th-description",
"no-headers"
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy