Package com.dtolabs.rundeck.core.common

Examples of com.dtolabs.rundeck.core.common.PropertyRetriever


     * Create a PropertyRetriever from a PropertyLookup that will not throw exception
     * @param lookup
     * @return
     */
    public static PropertyRetriever safePropertyRetriever(final IPropertyLookup lookup){
        return new PropertyRetriever() {
            public String getProperty(String name) {
                if(lookup.hasProperty(name)) {
                    return lookup.getProperty(name);
                }else {
                    return null;
View Full Code Here

TOP

Related Classes of com.dtolabs.rundeck.core.common.PropertyRetriever

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.