All Downloads are FREE. Search and download functionalities are using the official Maven repository.

brooklyn.util.internal.BasicDelegatingSystemProperty Maven / Gradle / Ivy

Go to download

Utility classes and methods developed for Brooklyn but not dependendent on Brooklyn or much else

There is a newer version: 0.7.0-M1
Show newest version
package brooklyn.util.internal;

public class BasicDelegatingSystemProperty {
    protected final StringSystemProperty delegate;

    public BasicDelegatingSystemProperty(String name) {
        delegate = new StringSystemProperty(name);
    }
    public String getPropertyName() {
        return delegate.getPropertyName();
    }
    public boolean isAvailable() {
        return delegate.isAvailable();
    }
    public String toString() {
        return delegate.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy