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


Java ResourceMappings类代码示例

本文整理汇总了Java中org.springframework.data.rest.core.mapping.ResourceMappings的典型用法代码示例。如果您正苦于以下问题:Java ResourceMappings类的具体用法?Java ResourceMappings怎么用?Java ResourceMappings使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ResourceMappings类属于org.springframework.data.rest.core.mapping包,在下文中一共展示了ResourceMappings类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: setup

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
@Before
public void setup() {
    when(persistentProperty.isAssociation()).thenReturn(true);
    when(persistentProperty.getActualType()).thenReturn((Class) OtherRepositoryClass.class);
    when(persistentProperty.getType()).thenReturn((Class) OtherRepositoryClass.class);

    ResourceMappings mappings = mock(ResourceMappings.class);
    ResourceMetadata metaData = mock(ResourceMetadata.class);
    when(metaData.getPath()).thenReturn(new Path("otherRepositoryClasses"));
    when(metaData.isExported()).thenReturn(true);
    when(mappings.getMetadataFor(eq(OtherRepositoryClass.class))).thenReturn(metaData);

    ModuleRegistry moduleRegistry = mock(ModuleRegistry.class);
    when(moduleRegistry.getModuleForResource(anyString())).thenReturn("environment-module");

    propertyFactory = new AssociationPropertyFactory(createConfiguration(), mappings, moduleRegistry);
}
 
开发者ID:thomasletsch,项目名称:moserp,代码行数:18,代码来源:AssociationPropertyFactoryTest.java

示例2: StateEngine

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public StateEngine(SubmissionEnvelopeRepository submissionEnvelopeRepository,
                   MessageSender messageSender,
                   ResourceMappings mappings,
                   RepositoryRestConfiguration config) {
    this.submissionEnvelopeRepository = submissionEnvelopeRepository;
    this.messageSender = messageSender;
    this.mappings = mappings;
    this.config = config;

    this.executorService = Executors.newCachedThreadPool();
}
 
开发者ID:HumanCellAtlas,项目名称:ingest-core,代码行数:12,代码来源:StateEngine.java

示例3: ApplicationStructureController

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
@Autowired
public ApplicationStructureController(ApplicationStructureBuilder applicationStructureBuilder, RepositoryRestConfiguration configuration, Repositories repositories, ResourceMappings mappings) {
    Assert.notNull(applicationStructureBuilder, "ApplicationStructureBuilder must not be null!");
    Assert.notNull(configuration, "RepositoryRestConfiguration must not be null!");
    Assert.notNull(repositories, "Repositories must not be null!");
    Assert.notNull(mappings, "ResourceMappings must not be null!");

    this.applicationStructureBuilder = applicationStructureBuilder;
    this.configuration = configuration;
    this.repositories = repositories;
    this.mappings = mappings;
}
 
开发者ID:thomasletsch,项目名称:moserp,代码行数:13,代码来源:ApplicationStructureController.java

示例4: setupMocks

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public void setupMocks() throws URISyntaxException {
    configuration = mock(RepositoryRestConfiguration.class);
    when(configuration.getBaseUri()).thenReturn(new URI("http://localhost:8080/"));
    mappings = mock(ResourceMappings.class);
    metaData = mock(ResourceMetadata.class);
    when(metaData.getPath()).thenReturn(new Path("valueLists"));
    PersistentEntity persistentEntity = mock(PersistentEntity.class);
    when(persistentEntities.getPersistentEntity(any())).thenReturn(persistentEntity);
    PersistentProperty persistentProperty = mock(PersistentProperty.class);
    when(persistentEntity.getPersistentProperty(any(String.class))).thenReturn(persistentProperty);
    when(entityLinks.linkFor(any())).thenReturn(BaseUriLinkBuilder.create(new URI("http://localhost:8080/")));
    moduleRegistry = mock(ModuleRegistry.class);
    when(moduleRegistry.getBaseUriForResource(anyString())).thenReturn(new RestUri("http://localhost:8080/valueLists"));
}
 
开发者ID:thomasletsch,项目名称:moserp,代码行数:15,代码来源:ApplicationStructureBuilderTest.java

示例5: using

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public static SubmissionEnvelopeMessageBuilder using(ResourceMappings mappings,
                                                     RepositoryRestConfiguration config) {
    return new SubmissionEnvelopeMessageBuilder(mappings, config);
}
 
开发者ID:HumanCellAtlas,项目名称:ingest-core,代码行数:5,代码来源:SubmissionEnvelopeMessageBuilder.java

示例6: SubmissionEnvelopeMessageBuilder

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
private SubmissionEnvelopeMessageBuilder(ResourceMappings mappings, RepositoryRestConfiguration config) {
    this.mappings = mappings;
    this.config = config;
}
 
开发者ID:HumanCellAtlas,项目名称:ingest-core,代码行数:5,代码来源:SubmissionEnvelopeMessageBuilder.java

示例7: using

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public static MetadataDocumentMessageBuilder using(ResourceMappings mappings, RepositoryRestConfiguration config) {
    return new MetadataDocumentMessageBuilder(mappings, config);
}
 
开发者ID:HumanCellAtlas,项目名称:ingest-core,代码行数:4,代码来源:MetadataDocumentMessageBuilder.java

示例8: MetadataDocumentMessageBuilder

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
private MetadataDocumentMessageBuilder(ResourceMappings mappings, RepositoryRestConfiguration config) {
    this.mappings = mappings;
    this.config = config;
}
 
开发者ID:HumanCellAtlas,项目名称:ingest-core,代码行数:5,代码来源:MetadataDocumentMessageBuilder.java

示例9: AssociationPropertyFactory

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
@Autowired
public AssociationPropertyFactory(RepositoryRestConfiguration configuration, ResourceMappings mappings, ModuleRegistry moduleRegistry) {
    this.configuration = configuration;
    this.mappings = mappings;
    this.moduleRegistry = moduleRegistry;
}
 
开发者ID:thomasletsch,项目名称:moserp,代码行数:7,代码来源:AssociationPropertyFactory.java

示例10: DemoRepositoryEntityLinks

import org.springframework.data.rest.core.mapping.ResourceMappings; //导入依赖的package包/类
public DemoRepositoryEntityLinks(Repositories repositories,
		ResourceMappings mappings, RepositoryRestConfiguration config, HateoasPageableHandlerMethodArgumentResolver resolver,org.springframework.plugin.core.PluginRegistry<BackendIdConverter,Class<?>> idConverters) {
	super(repositories, mappings, config, resolver,idConverters);
	this.resourceMappings = mappings;
	this.config = config;
}
 
开发者ID:michaellavelle,项目名称:spring-data-dynamodb-demo,代码行数:7,代码来源:DemoRepositoryEntityLinks.java


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