|
| 1 | +/* |
| 2 | + * Copyright (c) 2025, Inversoft Inc., All Rights Reserved |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, |
| 11 | + * software distributed under the License is distributed on an |
| 12 | + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, |
| 13 | + * either express or implied. See the License for the specific |
| 14 | + * language governing permissions and limitations under the License. |
| 15 | + */ |
| 16 | +package org.example.action.meta; |
| 17 | + |
| 18 | +import org.primeframework.mvc.ErrorException; |
| 19 | +import org.primeframework.mvc.action.annotation.Action; |
| 20 | +import org.primeframework.mvc.action.result.annotation.Forward; |
| 21 | + |
| 22 | +/** |
| 23 | + * @author Daniel DeGroff |
| 24 | + */ |
| 25 | +@Action |
| 26 | +@Forward.List({ |
| 27 | + @Forward(code = "input-lc", page = "/meta/refresh-lc.ftl"), |
| 28 | + @Forward(code = "input-uc", page = "/meta/refresh-uc.ftl") |
| 29 | +}) |
| 30 | +public class RefreshAction { |
| 31 | + public String test = "lc"; |
| 32 | + |
| 33 | + public String get() { |
| 34 | + if (test == null || !(test.equals("lc") || test.equals("uc"))) { |
| 35 | + throw new ErrorException("error"); |
| 36 | + } |
| 37 | + |
| 38 | + return "input-" + test; |
| 39 | + } |
| 40 | +} |
0 commit comments