Skip to content

Commit

Permalink
remove unused changes in StorageSite
Browse files Browse the repository at this point in the history
  • Loading branch information
pdowler committed Feb 26, 2024
1 parent 94d395e commit 7ab48e3
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,6 @@

import java.net.URI;
import java.util.Objects;
import java.util.SortedSet;
import java.util.TreeSet;
import java.util.UUID;
import org.apache.log4j.Logger;

Expand All @@ -86,15 +84,10 @@ public class StorageSite extends Entity implements Comparable<StorageSite> {
private static final Logger log = Logger.getLogger(StorageSite.class);

private URI resourceID;
private String name; // deprecate?
private String name;
private boolean allowRead;
private boolean allowWrite;

// TODO: resourceID of trusted services - intended from config
private SortedSet<URI> trustedSigners = new TreeSet<>();
// TODO: checksum of the pubkey of trusted services - actual from pub key retrieval
private SortedSet<URI> trustedPubKeyChecksums = new TreeSet<>();

/**
* Create a new StorageSite.
*
Expand Down

0 comments on commit 7ab48e3

Please sign in to comment.