
net.intelie.liverig.plugin.widgets.AssetWidgetQueryDetails 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;
public class AssetWidgetQueryDetails {
private String filter;
private String assetId;
private String assetName;
private String lookup;
public AssetWidgetQueryDetails(String filter, String assetId, String assetName, String lookup) {
this.filter = filter;
this.assetId = assetId;
this.assetName = assetName;
this.lookup = lookup;
}
public String getFilter() {
return filter;
}
public String getAssetId() {
return assetId;
}
public String getAssetName() {
return assetName;
}
public String getLookup() {
return lookup;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy