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

com.testdroid.api.model.jrjc.APIJiraPriority Maven / Gradle / Ivy

There is a newer version: 3.34.0
Show newest version
package com.testdroid.api.model.jrjc;

import com.testdroid.api.APIEntity;

import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

/**
 * @author Damian Sniezek 
 */
@XmlRootElement(name = "APIJiraPriority", namespace = "cloud.testdroid.api.model.jrjc")
@XmlType(name = "APIJiraPriority", namespace = "cloud.testdroid.api.model.jrjc")
public class APIJiraPriority extends APIEntity {

    private String name;

    public APIJiraPriority() {
    }

    public APIJiraPriority(Long id, String name) {
        this.id = id;
        this.name = name;
    }

    public String getName() {
        return name;
    }

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

    @Override
    protected  void clone(T from) {
        cloneBase(from);
        APIJiraPriority jiraPriority = (APIJiraPriority) from;
        this.name = jiraPriority.name;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy