SystemProperties.java :  » REST » propidle » com » googlecode » propidle » client » loaders » Java Open Source

Java Open Source » REST » propidle 
propidle » com » googlecode » propidle » client » loaders » SystemProperties.java
package com.googlecode.propidle.client.loaders;

import java.util.Properties;
import java.util.concurrent.Callable;

public class SystemProperties implements Callable<Properties> {
    public static SystemProperties systemProperties() {
        return new SystemProperties();
    }

    protected SystemProperties() {
    }

    public Properties call() throws Exception {
        return System.getProperties();
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.