本文整理汇总了Java中org.apache.olingo.server.api.processor.EntityCollectionProcessor类的典型用法代码示例。如果您正苦于以下问题:Java EntityCollectionProcessor类的具体用法?Java EntityCollectionProcessor怎么用?Java EntityCollectionProcessor使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
EntityCollectionProcessor类属于org.apache.olingo.server.api.processor包,在下文中一共展示了EntityCollectionProcessor类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: dispatchEntitySet
import org.apache.olingo.server.api.processor.EntityCollectionProcessor; //导入依赖的package包/类
@Test
public void dispatchEntitySet() throws Exception {
final String uri = "ESAllPrim";
final EntityCollectionProcessor processor = mock(EntityCollectionProcessor.class);
dispatch(HttpMethod.GET, uri, processor);
verify(processor).readEntityCollection(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class), any(ContentType.class));
dispatchMethodNotAllowed(HttpMethod.PATCH, uri, processor);
dispatchMethodNotAllowed(HttpMethod.PUT, uri, processor);
dispatchMethodNotAllowed(HttpMethod.DELETE, uri, processor);
dispatchMethodNotAllowed(HttpMethod.HEAD, uri, processor);
}
开发者ID:apache,项目名称:olingo-odata4,代码行数:15,代码来源:ODataHandlerImplTest.java
示例2: processRequestWithEntityCollectionProcessor
import org.apache.olingo.server.api.processor.EntityCollectionProcessor; //导入依赖的package包/类
private void processRequestWithEntityCollectionProcessor(ODataHttpHandler oDataHttpHandler, EntityCollectionProcessor entityCollectionProcessor) {
oDataHttpHandler.register(entityCollectionProcessor);
oDataHttpHandler.process(httpServletRequest, httpServletResponse);
}
开发者ID:sbcd90,项目名称:olingo-jersey,代码行数:5,代码来源:CarServiceImpl.java
示例3: dispatchSingletonNavigation
import org.apache.olingo.server.api.processor.EntityCollectionProcessor; //导入依赖的package包/类
@Test
public void dispatchSingletonNavigation() throws Exception {
final String uri = "SINav/NavPropertyETTwoKeyNavOne";
final String sigletonNavUri = "ESTwoKeyNav(PropertyInt16=1,PropertyString='1')/NavPropertySINav";
final String sigletonManyNavUri = "SINav/NavPropertyETTwoKeyNavMany";
final EntityProcessor processor = mock(EntityProcessor.class);
final EntityCollectionProcessor collectionProcessor = mock(EntityCollectionProcessor.class);
dispatch(HttpMethod.GET, sigletonNavUri, processor);
verify(processor).readEntity(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class), any(ContentType.class));
dispatch(HttpMethod.PATCH, sigletonNavUri, processor);
verify(processor).updateEntity(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class), any(ContentType.class),
any(ContentType.class));
dispatch(HttpMethod.PUT, sigletonNavUri, processor);
verify(processor, times(2)).updateEntity(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class), any(ContentType.class),
any(ContentType.class));
dispatchMethodNotAllowed(HttpMethod.POST, sigletonNavUri, processor);
dispatchMethodNotAllowed(HttpMethod.DELETE, sigletonNavUri, processor);
dispatch(HttpMethod.GET, uri, processor);
verify(processor, times(2)).readEntity(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class), any(ContentType.class));
dispatch(HttpMethod.PATCH, uri, processor);
verify(processor, times(3)).updateEntity(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class), any(ContentType.class),
any(ContentType.class));
dispatch(HttpMethod.PUT, uri, processor);
verify(processor, times(4)).updateEntity(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class), any(ContentType.class),
any(ContentType.class));
dispatchMethodNotAllowed(HttpMethod.POST, uri, processor);
dispatch(HttpMethod.DELETE, uri, processor);
verify(processor).deleteEntity(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class));
dispatch(HttpMethod.GET, sigletonManyNavUri, collectionProcessor);
verify(collectionProcessor).readEntityCollection(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class), any(ContentType.class));
dispatchMethodNotAllowed(HttpMethod.PATCH, sigletonManyNavUri, processor);
dispatchMethodNotAllowed(HttpMethod.PUT, sigletonManyNavUri, processor);
dispatch(HttpMethod.POST, sigletonManyNavUri, processor);
verify(processor).createEntity(
any(ODataRequest.class), any(ODataResponse.class), any(UriInfo.class), any(ContentType.class),
any(ContentType.class));
dispatchMethodNotAllowed(HttpMethod.DELETE, sigletonManyNavUri, processor);
}
开发者ID:apache,项目名称:olingo-odata4,代码行数:63,代码来源:ODataHandlerImplTest.java
注:本文中的org.apache.olingo.server.api.processor.EntityCollectionProcessor类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论