48 lines
1.2 KiB
Java
48 lines
1.2 KiB
Java
package com.bayer.edam.excelimport;
|
|
|
|
import java.util.HashSet;
|
|
|
|
public class CropScienceAsset {
|
|
|
|
Integer toolboxAssetId;
|
|
|
|
String assetPath;
|
|
String filename;
|
|
String appendClassification;
|
|
|
|
String byr_Title;
|
|
String byr_MarketingId;
|
|
String byr_cs_assetApproval;
|
|
String byr_cs_releaseDate;
|
|
String byr_cs_retireDate;
|
|
String byr_cs_businessUnit;
|
|
//String byr_cs_license_classification;
|
|
String byr_cs_description;
|
|
String byr_cs_keywords_tl;
|
|
String byr_campaignYearLabel; // TODO needs to be verified with Delaware
|
|
String byr_campaignTitle;
|
|
String byr_cs_IsShouldBePublished;
|
|
String byr_cs_warehouseAvailable;
|
|
String byr_cs_country;
|
|
String byr_licenseScope;
|
|
String byr_licenseOwner;
|
|
String byr_licenseInformation = "";
|
|
|
|
// Photo Gallery
|
|
String byr_cs_location;
|
|
String byr_cropYear;
|
|
|
|
HashSet<String> brands = new HashSet<String>();
|
|
HashSet<String> indications = new HashSet<String>();
|
|
HashSet<String> licenseRecords = new HashSet<String>();
|
|
HashSet<String> licenseTypes = new HashSet<String>();
|
|
|
|
|
|
Long fileSize;
|
|
|
|
public CropScienceAsset(Integer toolboxAssetId) {
|
|
this.toolboxAssetId = toolboxAssetId;
|
|
}
|
|
|
|
}
|