
net.intelie.liverig.plugin.widgets.AssetRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-assets Show documentation
Show all versions of plugin-assets Show documentation
Asset framework for industries solutions
The newest version!
package net.intelie.liverig.plugin.widgets;
import java.util.ArrayList;
import java.util.List;
public class AssetRequest {
private String asset;
private Integer extensionId;
private String assetId;
private String lookup;
private List channels = new ArrayList<>();
private List calculatedChannels = new ArrayList<>();
public String getAsset() {
return asset;
}
public void setAsset(String asset) {
this.asset = asset;
}
public Integer getExtensionId() {
return extensionId;
}
public String getAssetId() {
return assetId;
}
public void setExtensionId(Integer extensionId) {
this.extensionId = extensionId;
}
public List getChannels() {
return channels;
}
public List getCalculatedChannels() {
return calculatedChannels;
}
public void setChannels(List channels) {
this.channels = channels;
}
public void setCalculatedChannels(List calculatedChannels) {
this.calculatedChannels = calculatedChannels;
}
public String getLookup() {
return lookup;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy