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

org.activiti.cloud.starter.configuration.EnableActivitiAudit Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta1
Show newest version
package org.activiti.cloud.starter.configuration;

import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.springframework.boot.autoconfigure.domain.EntityScan;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@EnableJpaRepositories("org.activiti.cloud.services.audit")
@EntityScan(basePackages = {"org.activiti.cloud.services.audit.events","org.activiti.cloud.services.audit.events.model"})
@Inherited
@EnableDiscoveryClient
public @interface EnableActivitiAudit {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy