watchsimulation.java
来自「一个完整的XACML工程,学习XACML技术的好例子!」· Java 代码 · 共 33 行
JAVA
33 行
/*
* WatchSimulation.java
*
* Created on 19 November 2006, 16:36
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package uk.ac.kent.dpa.coord.clients;
/**
*
* @author ls97
*/
public class WatchSimulation {
/** Creates a new instance of WatchSimulation */
public WatchSimulation() {
}
public static void main(String[] arg) {
String serviceURI="http://129.12.16.150:8080/wsrf/services/org/globus/services/core/test";
try {
uk.ac.kent.dpa.coord.clients.TestingClientObject tester =
new uk.ac.kent.dpa.coord.clients.TestingClientObject(serviceURI,"/home/security-desc.xml");
tester.stop();
} catch (uk.ac.kent.dpa.coord.clients.TestingClientException ae) {
System.out.println(ae);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?