KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > hudson > util > IncompatibleVMDetected


1 package hudson.util;
2
3 import java.util.Map JavaDoc;
4
5 /**
6  * Model object used to display the error top page if
7  * we find out that XStream is running in pure-java mode.
8  *
9  * <p>
10  * <tt>index.jelly</tt> would display a nice friendly error page.
11  *
12  * @author Kohsuke Kawaguchi
13  */

14 public class IncompatibleVMDetected {
15
16     public Map JavaDoc getSystemProperties() {
17         return System.getProperties();
18     }
19 }
20
Popular Tags