@@ -29,14 +29,6 @@ public class HashedDataFeedKey {
29
29
@ JsonPropertyDescription ("The hash algorithm ID used to hash the datafeed key. A zero padded 3 digit number." )
30
30
private final String hashAlgorithmId ;
31
31
32
- // @JsonProperty
33
- // @JsonPropertyDescription("The unique subject ID of the user associated with the datafeed key.")
34
- // private final String subjectId;
35
- //
36
- // @JsonProperty
37
- // @JsonPropertyDescription("A more human friendly display form of the user identity. May be null.")
38
- // private final String displayName;
39
-
40
32
@ JsonProperty
41
33
@ JsonPropertyDescription ("The unique ID for the account sending the data to stroom. " +
42
34
"An account may comprise multiple systems and components of systems. " +
@@ -55,15 +47,11 @@ public class HashedDataFeedKey {
55
47
@ JsonCreator
56
48
public HashedDataFeedKey (@ JsonProperty ("hash" ) final String hash ,
57
49
@ JsonProperty ("hashAlgorithmId" ) final String hashAlgorithmId ,
58
- // @JsonProperty("subjectId") final String subjectId,
59
- // @JsonProperty("displayName") final String displayName,
60
50
@ JsonProperty ("accountId" ) final String accountId ,
61
51
@ JsonProperty ("streamMetaData" ) final Map <String , String > streamMetaData ,
62
52
@ JsonProperty ("expiryDateEpochMs" ) final long expiryDateEpochMs ) {
63
53
this .hash = hash ;
64
54
this .hashAlgorithmId = hashAlgorithmId ;
65
- // this.subjectId = subjectId;
66
- // this.displayName = displayName;
67
55
this .accountId = accountId ;
68
56
this .streamMetaData = streamMetaData ;
69
57
this .expiryDateEpochMs = expiryDateEpochMs ;
@@ -79,18 +67,6 @@ public String getHashAlgorithmId() {
79
67
return hashAlgorithmId ;
80
68
}
81
69
82
- // @NotBlank
83
- // public String getSubjectId() {
84
- // return subjectId;
85
- // }
86
-
87
- // /**
88
- // * May be null.
89
- // */
90
- // public String getDisplayName() {
91
- // return displayName;
92
- // }
93
-
94
70
@ NotBlank
95
71
public String getAccountId () {
96
72
return accountId ;
0 commit comments