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

📄 mathresourcehome.java

📁 globus toolkit Math例子
💻 JAVA
字号:
/* * This file is licensed under the terms of the Globus Toolkit Public License * v3, found at http://www.globus.org/toolkit/legal/4.0/license-v3.html. *  * This notice must appear in redistributions of this file, with or without * modification. */package org.globus.examples.services.security.first.impl;import org.globus.wsrf.Resource;import org.globus.wsrf.impl.SingletonResourceHome;public class MathResourceHome extends SingletonResourceHome {	public Resource findSingleton() {		try {			// Create a resource and initialize it.			MathResource mathResource = new MathResource();			mathResource.initialize();			return mathResource;		} catch (Exception e) {			e.printStackTrace();			return null;		}	}}

⌨️ 快捷键说明

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