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

com.github.siwenyan.si.model.SiModelTest Maven / Gradle / Ivy

There is a newer version: 1.25.1.0
Show newest version
package com.github.siwenyan.si.model;

import com.fasterxml.jackson.annotation.JsonIgnore;

import java.util.ArrayList;
import java.util.List;
import java.util.UUID;

public class SiModelTest {

    private String id = UUID.randomUUID().toString();
    private String name = "";
    private List commands = new ArrayList();

    @JsonIgnore
    private String suite = "";

    @Override
    public String toString() {
        return this.name;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public List getCommands() {
        return commands;
    }

    public void setCommands(List commands) {
        this.commands = commands;
    }

    @JsonIgnore
    public String getSuite() {
        return suite;
    }

    @JsonIgnore
    public void setSuite(String suite) {
        this.suite = suite;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy