Package com.github.dreamhead.moco.bootstrap.parser

Examples of com.github.dreamhead.moco.bootstrap.parser.HttpArgsParser


import com.github.dreamhead.moco.bootstrap.parser.HttpArgsParser;

public class HttpTask extends StartTask {
    public HttpTask(final String shutdownKey) {
        super(shutdownKey, new HttpArgsParser());
    }
View Full Code Here


    private final StartArgsParser startArgsParser;
    protected final RunnerFactory factory;

    public StartTask(final String shutdownKey) {
        this.factory = new RunnerFactory(shutdownKey);
        this.startArgsParser = new HttpArgsParser();
    }
View Full Code Here

TOP

Related Classes of com.github.dreamhead.moco.bootstrap.parser.HttpArgsParser

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.