本文整理了Java中io.swagger.v3.oas.annotations.Operation.hidden()
方法的一些代码示例,展示了Operation.hidden()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Operation.hidden()
方法的具体详情如下:
包路径:io.swagger.v3.oas.annotations.Operation
类名称:Operation
方法名:hidden
暂无
代码示例来源:origin: swagger-api/swagger-core
protected boolean isOperationHidden(Method method) {
io.swagger.v3.oas.annotations.Operation apiOperation = ReflectionUtils.getAnnotation(method, io.swagger.v3.oas.annotations.Operation.class);
if (apiOperation != null && apiOperation.hidden()) {
return true;
}
Hidden hidden = method.getAnnotation(Hidden.class);
if (hidden != null) {
return true;
}
if (config != null && !Boolean.TRUE.equals(config.isReadAllResources()) && apiOperation == null) {
return true;
}
return false;
}
代码示例来源:origin: io.swagger.core.v3/swagger-jaxrs2
protected boolean isOperationHidden(Method method) {
io.swagger.v3.oas.annotations.Operation apiOperation = ReflectionUtils.getAnnotation(method, io.swagger.v3.oas.annotations.Operation.class);
if (apiOperation != null && apiOperation.hidden()) {
return true;
}
Hidden hidden = method.getAnnotation(Hidden.class);
if (hidden != null) {
return true;
}
if (config != null && !Boolean.TRUE.equals(config.isReadAllResources()) && apiOperation == null) {
return true;
}
return false;
}
代码示例来源:origin: noboomu/proteus
protected boolean isOperationHidden(Method method)
{
io.swagger.v3.oas.annotations.Operation apiOperation = ReflectionUtils.getAnnotation(method, io.swagger.v3.oas.annotations.Operation.class);
if (apiOperation != null && apiOperation.hidden())
{
return true;
}
Hidden hidden = method.getAnnotation(Hidden.class);
if (hidden != null)
{
return true;
}
if (config != null && !Boolean.TRUE.equals(config.isReadAllResources()) && apiOperation == null)
{
return true;
}
return false;
}
内容来源于网络,如有侵权,请联系作者删除!