-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from BryanSharp/extend_params_for_aop_0306
support regEx/wildcard class match test lightweight aop passed
- Loading branch information
Showing
9 changed files
with
343 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/groovy/com/bryansharp/gradle/hibeaver/utils/Const.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.bryansharp.gradle.hibeaver.utils; | ||
|
||
/** | ||
* Created by bsp on 17/3/6. | ||
*/ | ||
|
||
public interface Const { | ||
int MT_FULL = 0; | ||
int MT_WILDCARD = 1; | ||
int MT_REGEX = 2; | ||
String KEY_CLASSMATCHTYPE="classMatchType"; | ||
String KEY_MODIFYMETHODS="modifyMethods"; | ||
String KEY_METHODNAME="methodName"; | ||
String KEY_METHODMATCHTYPE="methodMatchType"; | ||
String KEY_METHODDESC="methodDesc"; | ||
String KEY_ADAPTER="adapter"; | ||
String VALUE_WILDCARD="wildcard"; | ||
String VALUE_REGEX="regEx"; | ||
String VALUE_ALL="all"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.