Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
Fix Java Doc Error
Browse files Browse the repository at this point in the history
  • Loading branch information
asifdxtreme committed Dec 29, 2018
1 parent a8dd4a7 commit 40c71b7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
/*
* Indicates the annotated method will start a sub-transaction. <br>
* It is suggested to use the Spring Transactional annotation to wrap the sub-transaction method.
* A <code>@Compensable</code> method should satisfy below requirements:
Expand All @@ -38,7 +38,7 @@
@Retention(RetentionPolicy.RUNTIME)
public @interface Compensable {

/**
/*
* The retires number of the compensable method.
* Default value is 0, which means never retry it
* value is -1, which means retry it until succeed
Expand All @@ -49,7 +49,7 @@
*/
int retries() default 0;

/**
/*
* Compensation method name.<br>
* A compensation method should satisfy below requirements:
* <ol>
Expand All @@ -65,7 +65,7 @@

int retryDelayInMilliseconds() default 0;

/**
/*
* <code>@Compensable</code> method timeout, in seconds. <br>
* Default value is 0, which means never timeout.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
/**
/*
* Indicates the annotated method will start a sub-transaction. <br>
* A <code>@Participate</code> method should satisfy below requirements:
* <ol>
Expand All @@ -33,7 +33,7 @@
* </ol>
*/
public @interface Participate {
/**
/*
* Confirm method name.<br>
* A confirm method should satisfy below requirements:
* <ol>
Expand All @@ -47,7 +47,7 @@
*/
String confirmMethod() default "";

/**
/*
* Cancel method name.<br>
* A cancel method should satisfy below requirements:
* <ol>
Expand Down

0 comments on commit 40c71b7

Please sign in to comment.