Package org.qzerver.model.agent.action.providers.executor.http

Examples of org.qzerver.model.agent.action.providers.executor.http.HttpActionResult


    @Test
    public void testSimple() throws Exception {
        HttpActionDefinition httpActionDefinition = new HttpActionDefinition();

        HttpActionResult httpActionResult = new HttpActionResult();
        httpActionResult.setStatusCode(200);
        httpActionResult.setSucceed(true);

        String definitionData = "<definition/>";
        String resultData = "<result/>";
        String address = "10.2.0.1";
        long executionId = 100L;
View Full Code Here

TOP

Related Classes of org.qzerver.model.agent.action.providers.executor.http.HttpActionResult

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.