Package com.splunk

Examples of com.splunk.Application


import com.splunk.Entity;

class AppNode extends EntityNode {
    public AppNode(Entity value) {
        super(value);
        Application app = (Application)value;
        String displayName = app.getLabel();
        if (displayName == null) displayName = app.getName();
        setDisplayName(displayName);
    }
View Full Code Here

TOP

Related Classes of com.splunk.Application

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.