- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for AdminAction (0.05 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java
import org.lastaflute.web.Execute; import org.lastaflute.web.response.HtmlResponse; /** * The action for admin pages. */ public class AdminAction extends FessAdminAction { /** * Default constructor. */ public AdminAction() { super(); } @Override protected String getActionRole() { return "admin"; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/UserRoleLoginExceptionTest.java
public void test_genericTypeSafety_withAnotherSubclass() { // Test with another RootAction subclass UserRoleLoginException exception = new UserRoleLoginException(AdminAction.class); assertNotNull(exception); assertEquals(AdminAction.class, exception.getActionClass()); } @Test public void test_genericTypeSafety_getActionClassReturnType() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.base; import org.codelibs.fess.app.web.admin.AdminAction; import org.codelibs.fess.app.web.admin.dashboard.AdminDashboardAction; import org.codelibs.fess.mylasta.action.FessUserBean; import org.lastaflute.web.response.HtmlResponse; /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0)