This repository has been archived on 2026-07-13. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
toolbox-migration/Toolbox Migration/src/com/bayer/edam/excelimport/CropScienceAsset.java
T
2017-12-13 15:10:32 +01:00

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;
}
}