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

com.denimgroup.threadfix.data.entities.PluginVersion Maven / Gradle / Ivy

package com.denimgroup.threadfix.data.entities;

import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;

@Entity
@Table(name = "PluginVersion")
public class PluginVersion extends AuditableEntity {

    private String plugin;
    private String updateName;

    public PluginVersion(String plugin, String updateName) {
        this.plugin = plugin;
        this.updateName = updateName;
    }

    @Column(nullable = false)
    public String getPlugin() {
        return plugin;
    }

    public void setPlugin(String plugin) {
        this.plugin = plugin;
    }

    @Column(nullable = false)
    public String getUpdateName() {
        return updateName;
    }

    public void setUpdateName(String updateName) {
        this.updateName = updateName;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy