|
79 | 79 | import apijson.demo.model.Verify;
|
80 | 80 | import apijson.framework.APIJSONController;
|
81 | 81 | import apijson.framework.BaseModel;
|
82 |
| -import apijson.framework.StructureUtil; |
83 | 82 | import apijson.orm.JSONRequest;
|
84 | 83 | import apijson.orm.exception.ConditionErrorException;
|
85 | 84 | import apijson.orm.exception.ConflictException;
|
@@ -299,30 +298,30 @@ public JSONObject reload(@RequestBody String request) {
|
299 | 298 |
|
300 | 299 | boolean reloadAll = StringUtil.isEmpty(type, true) || "ALL".equals(type);
|
301 | 300 |
|
302 |
| - if (reloadAll || "FUNCTION".equals(type)) { |
| 301 | + if (reloadAll || "ACCESS".equals(type)) { |
303 | 302 | try {
|
304 |
| - result.put(FUNCTION_, DemoFunctionParser.init()); |
| 303 | + result.put(ACCESS_, DemoVerifier.initAccess()); |
305 | 304 | } catch (ServerException e) {
|
306 | 305 | e.printStackTrace();
|
307 |
| - result.put(FUNCTION_, DemoParser.newErrorResult(e)); |
| 306 | + result.put(ACCESS_, DemoParser.newErrorResult(e)); |
308 | 307 | }
|
309 | 308 | }
|
310 | 309 |
|
311 |
| - if (reloadAll || "REQUEST".equals(type)) { |
| 310 | + if (reloadAll || "FUNCTION".equals(type)) { |
312 | 311 | try {
|
313 |
| - result.put(REQUEST_, StructureUtil.init()); |
| 312 | + result.put(FUNCTION_, DemoFunctionParser.init()); |
314 | 313 | } catch (ServerException e) {
|
315 | 314 | e.printStackTrace();
|
316 |
| - result.put(REQUEST_, DemoParser.newErrorResult(e)); |
| 315 | + result.put(FUNCTION_, DemoParser.newErrorResult(e)); |
317 | 316 | }
|
318 | 317 | }
|
319 | 318 |
|
320 |
| - if (reloadAll || "ACCESS".equals(type)) { |
| 319 | + if (reloadAll || "REQUEST".equals(type)) { |
321 | 320 | try {
|
322 |
| - result.put(ACCESS_, DemoVerifier.init()); |
| 321 | + result.put(REQUEST_, DemoVerifier.initRequest()); |
323 | 322 | } catch (ServerException e) {
|
324 | 323 | e.printStackTrace();
|
325 |
| - result.put(ACCESS_, DemoParser.newErrorResult(e)); |
| 324 | + result.put(REQUEST_, DemoParser.newErrorResult(e)); |
326 | 325 | }
|
327 | 326 | }
|
328 | 327 |
|
|
0 commit comments