
com.capitalone.dashboard.model.WhiteSourceProduct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.model;
public class WhiteSourceProduct extends BaseModel {
private Long productId;
private String productName;
private String productToken;
public Long getProductId() {
return productId;
}
public void setProductId(Long productId) {
this.productId = productId;
}
public String getProductName() {
return productName;
}
public void setProductName(String productName) {
this.productName = productName;
}
public String getProductToken() {
return productToken;
}
public void setProductToken(String productToken) {
this.productToken = productToken;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy