本文整理了Java中org.apache.cxf.jaxrs.ext.multipart.Multipart.required()
方法的一些代码示例,展示了Multipart.required()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Multipart.required()
方法的具体详情如下:
包路径:org.apache.cxf.jaxrs.ext.multipart.Multipart
类名称:Multipart
方法名:required
暂无
代码示例来源:origin: apache/cxf
public static Attachment getMultipart(Multipart id,
MediaType mt,
List<Attachment> infos) throws IOException {
if (id != null) {
for (Attachment a : infos) {
if (matchAttachmentId(a, id)) {
checkMediaTypes(a.getContentType(), id.type());
return a;
}
}
if (id.required()) {
org.apache.cxf.common.i18n.Message errorMsg =
new org.apache.cxf.common.i18n.Message("MULTTIPART_ID_NOT_FOUND",
BUNDLE,
id.value(),
mt.toString());
LOG.warning(errorMsg.toString());
throw ExceptionUtils.toBadRequestException(
new MultipartReadException(id.value(), id.type(), errorMsg.toString()), null);
}
return null;
}
return !infos.isEmpty() ? infos.get(0) : null;
}
代码示例来源:origin: apache/cxf
if (id != null && !id.required()) {
代码示例来源:origin: org.apache.cxf/cxf-bundle-jaxrs
if (id != null && !id.required()) {
代码示例来源:origin: org.apache.cxf/cxf-bundle-jaxrs
public static Attachment getMultipart(Multipart id,
MediaType mt,
List<Attachment> infos) throws IOException {
if (id != null) {
for (Attachment a : infos) {
if (matchAttachmentId(a, id)) {
checkMediaTypes(a.getContentType(), id.type());
return a;
}
}
if (id.required()) {
org.apache.cxf.common.i18n.Message errorMsg =
new org.apache.cxf.common.i18n.Message("MULTTIPART_ID_NOT_FOUND",
BUNDLE,
id.value(),
mt.toString());
LOG.warning(errorMsg.toString());
throw ExceptionUtils.toBadRequestException(
new MultipartReadException(id.value(), id.type(), errorMsg.toString()), null);
} else {
return null;
}
}
return infos.size() > 0 ? infos.get(0) : null;
}
内容来源于网络,如有侵权,请联系作者删除!