Skip to content

Commit

Permalink
deprecation on entire object is enough
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerjroach committed Mar 18, 2024
1 parent b48dbb3 commit 3ca63f7
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ public AWSS3StorageDownloadFileRequest(
* @return Access level
*/
@NonNull
@Deprecated
@SuppressWarnings("deprecation")
public StorageAccessLevel getAccessLevel() {
return accessLevel;
Expand All @@ -78,7 +77,6 @@ public StorageAccessLevel getAccessLevel() {
* Gets the storage key.
* @return key
*/
@Deprecated
@NonNull
public String getKey() {
return key;
Expand All @@ -88,7 +86,6 @@ public String getKey() {
* Gets the target identity id override. If null, the operation gets the default, current user's identity ID.
* @return target identity id override
*/
@Deprecated
@Nullable
public String getTargetIdentityId() {
return targetIdentityId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ public StorageAccessLevel getAccessLevel() {
* Gets the storage key.
* @return key
*/
@Deprecated
@NonNull
public String getKey() {
return key;
Expand All @@ -84,7 +83,6 @@ public String getKey() {
* Gets the target identity id override. If null, the operation gets the default, current user's identity ID.
* @return target identity id override
*/
@Deprecated
@Nullable
public String getTargetIdentityId() {
return targetIdentityId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ public AWSS3StorageListRequest(
* @return Access level
*/
@NonNull
@Deprecated
@SuppressWarnings("deprecation")
public StorageAccessLevel getAccessLevel() {
return accessLevel;
Expand All @@ -108,7 +107,6 @@ public String getPath() {
* Gets the target identity id override. If null, the operation gets the default, current user's identity ID.
* @return target identity id override
*/
@Deprecated
@Nullable
public String getTargetIdentityId() {
return targetIdentityId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ public AWSS3StorageRemoveRequest(
* @return Access level
*/
@NonNull
@Deprecated
@SuppressWarnings("deprecation")
public StorageAccessLevel getAccessLevel() {
return accessLevel;
Expand All @@ -67,7 +66,6 @@ public StorageAccessLevel getAccessLevel() {
* Gets the storage key.
* @return key
*/
@Deprecated
@NonNull
public String getKey() {
return key;
Expand All @@ -77,7 +75,6 @@ public String getKey() {
* Gets the target identity id override. If null, the operation gets the default, current user's identity ID.
* @return target identity id override
*/
@Deprecated
@Nullable
public String getTargetIdentityId() {
return targetIdentityId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ public AWSS3StorageUploadRequest(
* @return key
*/
@NonNull
@Deprecated
public String getKey() {
return key;
}
Expand All @@ -105,7 +104,6 @@ public L getLocal() {
* @return Access level
*/
@NonNull
@Deprecated
@SuppressWarnings("deprecation")
public StorageAccessLevel getAccessLevel() {
return accessLevel;
Expand All @@ -115,7 +113,6 @@ public StorageAccessLevel getAccessLevel() {
* Gets the target identity id override. If null, the operation gets the default, current user's identity ID.
* @return target identity id override
*/
@Deprecated
@Nullable
public String getTargetIdentityId() {
return targetIdentityId;
Expand Down

0 comments on commit 3ca63f7

Please sign in to comment.