All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.emc.documentum.springdata.repository.config.DctmRepositoriesRegistrar Maven / Gradle / Ivy

The newest version!
package com.emc.documentum.springdata.repository.config;

import java.lang.annotation.Annotation;

import org.springframework.data.repository.config.RepositoryBeanDefinitionRegistrarSupport;
import org.springframework.data.repository.config.RepositoryConfigurationExtension;

/*
 * Copyright (c) 2015 EMC Corporation. All Rights Reserved.
 * EMC Confidential: Restricted Internal Distribution
 */
public class DctmRepositoriesRegistrar extends RepositoryBeanDefinitionRegistrarSupport {

  @Override
  protected Class getAnnotation() {
    return EnableDctmRepositories.class;
  }

  @Override
  protected RepositoryConfigurationExtension getExtension() {
    return new DctmRepositoryConfigExtension();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy