This repository was archived by the owner on Oct 20, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/main/java/org/trellisldp/ext/aws Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ dependencies {
23
23
implementation(" org.apache.jena:jena-arq:$jenaVersion " )
24
24
implementation(" org.apache.tamaya:tamaya-api:$tamayaVersion " )
25
25
implementation(" org.slf4j:slf4j-api:$slf4jVersion " )
26
- implementation(" org.trellisldp:trellis-id:$trellisVersion " )
27
26
implementation(" org.trellisldp:trellis-vocabulary:$trellisVersion " )
28
27
29
28
testImplementation(" org.apache.commons:commons-text:$commonsTextVersion " )
Original file line number Diff line number Diff line change 53
53
import org .trellisldp .api .Binary ;
54
54
import org .trellisldp .api .BinaryMetadata ;
55
55
import org .trellisldp .api .BinaryService ;
56
+ import org .trellisldp .api .DefaultIdentifierService ;
56
57
import org .trellisldp .api .IdentifierService ;
57
58
import org .trellisldp .api .RuntimeTrellisException ;
58
- import org .trellisldp .id .UUIDGenerator ;
59
59
60
60
/**
61
61
* An S3-based binary service.
@@ -71,7 +71,7 @@ public class S3BinaryService implements BinaryService {
71
71
SHA3_256 , SHA3_384 , SHA3_512 ).stream ()
72
72
.collect (toSet ());
73
73
74
- private final IdentifierService idService = new UUIDGenerator ();
74
+ private final IdentifierService idService = new DefaultIdentifierService ();
75
75
private final AmazonS3 client ;
76
76
private final String bucketName ;
77
77
private final String pathPrefix ;
You can’t perform that action at this time.
0 commit comments