⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 irealmfactory.java

📁 eclipse 内置tomcat 5.5 可在eclipse rcp内加入jsp 或者servlet应用
💻 JAVA
字号:
/******************************************************************************* * Copyright (c) 2005 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 exiled.tomcat5.extensions;import org.apache.catalina.Realm;/** * Factory used to generate an appropriate realm object for use during * authentication by the Tomcat server. Realm factories declared through the * org.eclipse.tomcat.realmfactory extention point must implement this * interface. <br> * Experimental: This extension point should be considered experimental. It may * change or be removed in the future releases. *  * @since 3.1 */public interface IRealmFactory {	/**	 * Creates a real for authentication by the Tomcat server.	 * 	 * @return an instance of a Realm.	 */	public Realm createRealm();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -