90% of file upload, GPC number

This commit is contained in:
GEXCE
2017-11-08 15:42:27 +01:00
parent 4fdf6182b3
commit bb74e36db7
3 changed files with 147 additions and 45 deletions
@@ -0,0 +1,15 @@
package com.bayer.edam.migration;
import java.net.URI;
public class UploadReference {
URI targetRecord;
String fileURI;
public UploadReference(URI record, String fileURI) {
this.targetRecord = record;
this.fileURI = fileURI;
}
}