Package org.mockserver.client.serialization.model

Source Code of org.mockserver.client.serialization.model.ParameterDTO

package org.mockserver.client.serialization.model;

import org.mockserver.model.Parameter;

/**
* @author jamesdbloom
*/
public class ParameterDTO extends KeyToMultiValueDTO {

    public ParameterDTO(Parameter parameter) {
        super(parameter);
    }

    protected ParameterDTO() {
    }

    public Parameter buildObject() {
        return new Parameter(getName(), getValues());
    }
}
TOP

Related Classes of org.mockserver.client.serialization.model.ParameterDTO

TOP
Copyright © 2018 www.massapi.com. 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.