Package org.springframework.data.rest.webmvc.support

Examples of org.springframework.data.rest.webmvc.support.RepositoryEntityLinks


   * @return
   * @throws Exception
   */
  @Bean
  public RepositoryEntityLinks entityLinks() {
    return new RepositoryEntityLinks(repositories(), resourceMappings(), config(), pageableResolver(),
        backendIdConverterRegistry());
  }
View Full Code Here


  @Bean
  public RootResourceInformationToAlpsDescriptorConverter alpsConverter() {

    Repositories repositories = repositories();
    PersistentEntities persistentEntities = persistentEntities();
    RepositoryEntityLinks entityLinks = entityLinks();
    MessageSourceAccessor messageSourceAccessor = resourceDescriptionMessageSourceAccessor();
    RepositoryRestConfiguration config = config();
    ResourceMappings resourceMappings = resourceMappings();

    return new RootResourceInformationToAlpsDescriptorConverter(resourceMappings, repositories, persistentEntities,
View Full Code Here

TOP

Related Classes of org.springframework.data.rest.webmvc.support.RepositoryEntityLinks

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.