Package org.mockserver.client.serialization.model

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

package org.mockserver.client.serialization.model;

import org.mockserver.model.StringBody;

/**
* @author jamesdbloom
*/
public class StringBodyDTO extends BodyDTO {

    private String value;

    public StringBodyDTO(StringBody stringBody) {
        super(stringBody.getType());
        value = stringBody.getValue();
    }

    protected StringBodyDTO() {
    }

    public String getValue() {
        return value;
    }

    public StringBody buildObject() {
        return new StringBody(value, getType());
    }
}
TOP

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

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.