brooklyn.util.internal.BasicDelegatingSystemProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brooklyn-utils-common Show documentation
Show all versions of brooklyn-utils-common Show documentation
Utility classes and methods developed for Brooklyn but not dependendent on Brooklyn or much else
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();
}
}