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

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

package com.denimgroup.threadfix.data.entities;

import com.denimgroup.threadfix.views.AllViews;
import com.fasterxml.jackson.annotation.JsonView;

import javax.persistence.Transient;

public class RemoteProviderApplicationVersion {

    private String nativeId;
    private String nativeName;
    private String reportUrl;

    @Transient
    @JsonView({AllViews.TableRow.class, AllViews.RestViewRemoteProviderApplication.class})
    public String getNativeId() {
        return nativeId;
    }

    public void setNativeId(String nativeId) {
        this.nativeId = nativeId;
    }

    @Transient
    @JsonView({AllViews.TableRow.class, AllViews.RestViewRemoteProviderApplication.class})
    public String getNativeName() {
        return nativeName;
    }

    public void setNativeName(String nativeName) {
        this.nativeName = nativeName;
    }

    @Transient
    @JsonView({AllViews.TableRow.class, AllViews.RestViewRemoteProviderApplication.class})
    public String getReportUrl() {
        return reportUrl;
    }

    public void setReportUrl(String reportUrl) {
        this.reportUrl = reportUrl;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy