1 package nl.ordina.thesandbox;
2
3 import java.util.Properties;
4
5 /**
6 * Hello user! TODO Remove this class.....
7 */
8 public class App {
9 public static void main(String[] args) {
10 System.out.println("Hello user!");
11 }
12
13 public Properties getEnviroment() {
14 return System.getProperties();
15 }
16 }