Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/FormLoginConfig.java')
-rw-r--r--plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/FormLoginConfig.java73
1 files changed, 0 insertions, 73 deletions
diff --git a/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/FormLoginConfig.java b/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/FormLoginConfig.java
deleted file mode 100644
index 4af151af2..000000000
--- a/plugins/org.eclipse.jst.j2ee.core/mofj2ee/org/eclipse/jst/j2ee/webapplication/FormLoginConfig.java
+++ /dev/null
@@ -1,73 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2001, 2006 IBM Corporation and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.jst.j2ee.webapplication;
-
-import org.eclipse.jst.j2ee.common.J2EEEObject;
-/**
- * The form-login-config element specifies the login and error pages that should be used in form based login. If form based authentication is not used, these elements are ignored.
- * @generated
- */
-public interface FormLoginConfig extends J2EEEObject {
- /**
- * @generated This field/method will be replaced during code generation
- * @return The value of the FormLoginPage attribute
- * The form-login-page element defines the location in the web app where the page
- * that can be used for login can be found
- */
- String getFormLoginPage();
-
- /**
- * @generated This field/method will be replaced during code generation
- * @param value The new value of the FormLoginPage attribute
- */
- void setFormLoginPage(String value);
-
- /**
- * @generated This field/method will be replaced during code generation
- * @return The value of the FormErrorPage attribute
- * The form-error-page element defines the location in the web app where the error
- * page that is displayed when login is not successful can be found
- */
- String getFormErrorPage();
-
- /**
- * @generated This field/method will be replaced during code generation
- * @param value The new value of the FormErrorPage attribute
- */
- void setFormErrorPage(String value);
-
- /**
- * @generated This field/method will be replaced during code generation
- * @return The LoginConfig reference
- */
- LoginConfig getLoginConfig();
-
- /**
- * @generated This field/method will be replaced during code generation
- * @param l The new value of the LoginConfig reference
- */
- void setLoginConfig(LoginConfig value);
-
-}
-
-
-
-
-
-
-
-
-
-
-
-
-
-

Back to the top