Skip to content
This repository was archived by the owner on Feb 12, 2019. It is now read-only.

Commit 5b4ea58

Browse files
committed
fixes
1 parent 940b099 commit 5b4ea58

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

artemis-graph/src/main/java/org/jnosql/artemis/graph/GraphTraversalSourceOperation.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
import static java.lang.annotation.ElementType.TYPE;
2424
import static java.lang.annotation.RetentionPolicy.RUNTIME;
2525

26-
@Target({FIELD, TYPE, PARAMETER})
27-
@Retention(RUNTIME)
28-
@Qualifier
2926
/**
3027
* All Graph operation go through the Graph traversal e.g. the GraphConverter and GraphTemplate implementation will use
3128
* {@link org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource} in all operations.
3229
*/
30+
@Target({FIELD, TYPE, PARAMETER})
31+
@Retention(RUNTIME)
32+
@Qualifier
3333
public @interface GraphTraversalSourceOperation {
3434
}

artemis-graph/src/main/java/org/jnosql/artemis/graph/Transactional.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
import static java.lang.annotation.ElementType.TYPE;
2424
import static java.lang.annotation.RetentionPolicy.RUNTIME;
2525

26-
@InterceptorBinding
27-
@Target({METHOD, TYPE})
28-
@Retention(RUNTIME)
2926
/**
3027
* The Transactional annotation provides the application the ability to declaratively
3128
* control transaction boundaries on CDI managed beans. {@link org.apache.tinkerpop.gremlin.structure.Transaction}
3229
*/
30+
@InterceptorBinding
31+
@Target({METHOD, TYPE})
32+
@Retention(RUNTIME)
3333
public @interface Transactional {
3434
}

0 commit comments

Comments
 (0)