aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/components/impl/lock/LockingTransactional.java
blob: 366969f284e739d81027ac5ea5d0c4ec703b29ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.openecomp.sdc.be.components.impl.lock;

import org.springframework.transaction.annotation.Transactional;

import java.lang.annotation.*;

@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Transactional
@Inherited
public @interface LockingTransactional {

}