当前位置: 首页>>代码示例>>Java>>正文


Java ReaderInterceptorContext.setType方法代码示例

本文整理汇总了Java中javax.ws.rs.ext.ReaderInterceptorContext.setType方法的典型用法代码示例。如果您正苦于以下问题:Java ReaderInterceptorContext.setType方法的具体用法?Java ReaderInterceptorContext.setType怎么用?Java ReaderInterceptorContext.setType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javax.ws.rs.ext.ReaderInterceptorContext的用法示例。


在下文中一共展示了ReaderInterceptorContext.setType方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: aroundReadFrom

import javax.ws.rs.ext.ReaderInterceptorContext; //导入方法依赖的package包/类
@Override
public Object aroundReadFrom(ReaderInterceptorContext context) throws IOException, WebApplicationException {
  if (!isVersioningSupported(context)) {
    return context.proceed();
  }
  String sourceVersion = Version.get(context);
  Type targetType = context.getGenericType();
  Type sourceType = getVersionType(targetType, sourceVersion);
  context.setType(toClass(sourceType));
  context.setGenericType(sourceType);
  Object sourceObject = context.proceed();
  Object target;
  if (sourceObject instanceof Collection) {
    target = convertCollectionToHigherVersion(targetType, (Collection<?>)sourceObject, sourceVersion);
  } else {
    target = converter.convertToHigherVersion(toClass(targetType), sourceObject, sourceVersion);
  }
  context.setType(toClass(targetType));
  context.setGenericType(targetType);
  return target;
}
 
开发者ID:openknowledge,项目名称:jaxrs-versioning,代码行数:22,代码来源:MessageBodyConverter.java

示例2: aroundReadFrom

import javax.ws.rs.ext.ReaderInterceptorContext; //导入方法依赖的package包/类
@Override
public Object aroundReadFrom(ReaderInterceptorContext context) throws IOException {

    String json = JsonStrings.inputStreamToString(context.getInputStream());
    JsonStrings.isNotNullOrEmpty(json);
    context.setInputStream(new ByteArrayInputStream(json.getBytes(Charset.forName("UTF-8"))));

    String jobId = uriInfo.getPathParameters().getFirst("jobId");
    Job job = jobManager.getJob(jobId).orElseThrow(NotFoundException::new);
    Class<? extends JobConfigurationModel> configurationModelType = getJobConfigurationModelClass(job.getJobConfiguration());
    context.setType(configurationModelType);
    context.setGenericType(configurationModelType);
    return context.proceed();

}
 
开发者ID:projectomakase,项目名称:omakase,代码行数:16,代码来源:PutJobConfigInterceptor.java

示例3: aroundReadFrom

import javax.ws.rs.ext.ReaderInterceptorContext; //导入方法依赖的package包/类
@Override
public Object aroundReadFrom(ReaderInterceptorContext context) throws IOException {

    String json = JsonStrings.inputStreamToString(context.getInputStream());
    JsonStrings.isNotNullOrEmpty(json);
    context.setInputStream(new ByteArrayInputStream(json.getBytes(Charset.forName("UTF-8"))));

    String repositoryId = uriInfo.getPathParameters().getFirst("repositoryId");
    Class<? extends RepositoryConfiguration> configurationType = repositoryManager.getRepositoryConfigurationType(repositoryId);
    context.setType(configurationType);
    context.setGenericType(configurationType);
    return context.proceed();

}
 
开发者ID:projectomakase,项目名称:omakase,代码行数:15,代码来源:PutRepositoryConfigInterceptor.java

示例4: aroundReadFrom

import javax.ws.rs.ext.ReaderInterceptorContext; //导入方法依赖的package包/类
@Override
public Object aroundReadFrom(ReaderInterceptorContext context) throws IOException {

    String json = JsonStrings.inputStreamToString(context.getInputStream());
    JsonStrings.isNotNullOrEmpty(json);
    context.setInputStream(new ByteArrayInputStream(json.getBytes(Charset.forName("UTF-8"))));

    String locationId = uriInfo.getPathParameters().getFirst("locationId");
    Class<? extends LocationConfiguration> configurationType = locationManager.getLocationConfigurationType(locationId);
    context.setType(configurationType);
    context.setGenericType(configurationType);
    return context.proceed();

}
 
开发者ID:projectomakase,项目名称:omakase,代码行数:15,代码来源:PutLocationConfigInterceptor.java


注:本文中的javax.ws.rs.ext.ReaderInterceptorContext.setType方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。