All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rmn.testrail.entity.Step Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package com.rmn.testrail.entity;

import org.codehaus.jackson.annotate.JsonProperty;

public class Step extends BaseEntity {

    public Step() {
    }

    public Step(String content, String expected) {
        this.content = content;
        this.expected = expected;
    }

    @JsonProperty("content")
    private String content;
    public String getContent() { return content; }
    public void setContent(String content) { this.content = content; }

    @JsonProperty("expected")
    private String expected;
    public String getExpected() { return expected; }
    public void setExpected(String expected) { this.expected = expected; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy