本文整理汇总了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;
}
示例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();
}
示例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();
}
示例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();
}