everything but licenses

This commit is contained in:
gexce
2017-08-15 19:15:56 +02:00
parent f6190db4b3
commit d86c1e6d1d
3 changed files with 169 additions and 104 deletions
@@ -0,0 +1,38 @@
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_brand;
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;
HashSet<String> brands = new HashSet<String>();
HashSet<String> indications = new HashSet<String>();
Long fileSize;
public CropScienceAsset(Integer toolboxAssetId) {
this.toolboxAssetId = toolboxAssetId;
}
}