Skip to content

Commit 2973964

Browse files
committed
update for auth annotation
1 parent 3abe361 commit 2973964

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/main/java/net/winroad/htmldoclet4jdk7/ConfigurationImpl.java

+9
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ public void setSpecificDocletOptions(String[][] options) {
104104
springcontextconfigpath = os[1];
105105
} else if (opt.equals("-excludedurlsxpath")) {
106106
excludedurlsxpath = os[1];
107+
} else if (opt.equals("-showannotationlist")) {
108+
showAnnotationList = os[1];
109+
} else if (opt.equals("-authkeyword")) {
110+
authKeyword = os[1];
111+
} else if (opt.equals("-noauthkeyword")) {
112+
noAuthKeyword = os[1];
107113
} else if (opt.equals("-systemname")) {
108114
systemname = os[1];
109115
} else if (opt.equals("-branchname")) {
@@ -176,6 +182,9 @@ public int optionLength(String option) {
176182
|| option.equals("-dubboconfigpath")
177183
|| option.equals("-springcontextconfigpath")
178184
|| option.equals("-excludedurlsxpath")
185+
|| option.equals("-showannotationlist")
186+
|| option.equals("-authkeyword")
187+
|| option.equals("-noauthkeyword")
179188
|| option.equals("-systemname") || option.equals("-branchname")
180189
|| option.equals("-searchengine") || option.equals("-buildid")
181190
|| option.equals("-codeurl")) {

0 commit comments

Comments
 (0)