Package hudson.slaves

Examples of hudson.slaves.NodeDescriptor


            if(mode==null) {
                rsp.sendError(SC_BAD_REQUEST);
                return;
            }

            NodeDescriptor d = NodeDescriptor.all().findByName(mode);
            d.handleNewNodePage(this,name,req,rsp);
        }
    }
View Full Code Here


            if(mode==null) {
                rsp.sendError(SC_BAD_REQUEST);
                return;
            }

            NodeDescriptor d = NodeDescriptor.all().find(mode);
            d.handleNewNodePage(this,name,req,rsp);
        }
    }
View Full Code Here

TOP

Related Classes of hudson.slaves.NodeDescriptor

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.