com.ibm.cloud.objectstorage.services.s3.model.PublicAccessBlockConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ibm-cos-java-sdk-bundle Show documentation
Show all versions of ibm-cos-java-sdk-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries relocated to different namespaces.
/*
* Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
package com.ibm.cloud.objectstorage.services.s3.model;
import java.io.Serializable;
public class PublicAccessBlockConfiguration implements Serializable, Cloneable {
private Boolean blockPublicAcls;
private Boolean ignorePublicAcls;
// IBM COS does not support these flags.
// private Boolean blockPublicPolicy;
// private Boolean restrictPublicBuckets;
public Boolean getBlockPublicAcls() {
return blockPublicAcls;
}
public void setBlockPublicAcls(Boolean blockPublicAcls) {
this.blockPublicAcls = blockPublicAcls;
}
public PublicAccessBlockConfiguration withBlockPublicAcls(Boolean blockPublicAcls) {
setBlockPublicAcls(blockPublicAcls);
return this;
}
public Boolean getIgnorePublicAcls() {
return ignorePublicAcls;
}
public void setIgnorePublicAcls(Boolean ignorePublicAcls) {
this.ignorePublicAcls = ignorePublicAcls;
}
public PublicAccessBlockConfiguration withIgnorePublicAcls(Boolean ignorePublicAcls) {
setIgnorePublicAcls(ignorePublicAcls);
return this;
}
// IBM COS does not support these flags.
// public Boolean getBlockPublicPolicy() {
// return blockPublicPolicy;
// }
// public void setBlockPublicPolicy(Boolean blockPublicPolicy) {
// this.blockPublicPolicy = blockPublicPolicy;
// }
// public PublicAccessBlockConfiguration withBlockPublicPolicy(Boolean blockPublicPolicy) {
// setBlockPublicPolicy(blockPublicPolicy);
// return this;
// }
// public Boolean getRestrictPublicBuckets() {
// return restrictPublicBuckets;
// }
// public void setRestrictPublicBuckets(Boolean restrictPublicBuckets) {
// this.restrictPublicBuckets = restrictPublicBuckets;
// }
// public PublicAccessBlockConfiguration withRestrictPublicBuckets(Boolean restrictPublicBuckets) {
// setRestrictPublicBuckets(restrictPublicBuckets);
// return this;
// }
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final PublicAccessBlockConfiguration that = (PublicAccessBlockConfiguration) o;
if (blockPublicAcls != null ? !blockPublicAcls.equals(that.blockPublicAcls) : that.blockPublicAcls != null) {
return false;
}
if (ignorePublicAcls != null ? !ignorePublicAcls.equals(that.ignorePublicAcls) : that.ignorePublicAcls != null) {
return false;
}
// IBM COS does not support these flags.
// if (blockPublicPolicy != null ? !blockPublicPolicy.equals(that.blockPublicPolicy) : that.blockPublicPolicy != null) {
// return false;
// }
// return restrictPublicBuckets != null ? restrictPublicBuckets.equals(that.restrictPublicBuckets) : that.restrictPublicBuckets == null;
// IBM-COS addition: Because IBM COS does not support restrictPublicBuckets and blockPublicPolicy,
// we return true if we end up here.
return true;
}
@Override
public int hashCode() {
int result = blockPublicAcls != null ? blockPublicAcls.hashCode() : 0;
result = 31 * result + (ignorePublicAcls != null ? ignorePublicAcls.hashCode() : 0);
// IBM COS does not support these flags.
// result = 31 * result + (blockPublicPolicy != null ? blockPublicPolicy.hashCode() : 0);
// result = 31 * result + (restrictPublicBuckets != null ? restrictPublicBuckets.hashCode() : 0);
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getBlockPublicAcls() != null) {
sb.append("BlockPublicAcls: ").append(getBlockPublicAcls()).append(",");
}
if (getIgnorePublicAcls() != null) {
sb.append("IgnorePublicAcls: ").append(getIgnorePublicAcls()).append(",");
}
// IBM COS does not support these flags.
// if (getBlockPublicPolicy() != null) {
// sb.append("BlockPublicPolicy: ").append(getBlockPublicPolicy()).append(",");
// }
// if (getRestrictPublicBuckets() != null) {
// sb.append("RestrictPublicBuckets: ").append(getRestrictPublicBuckets()).append(",");
// }
sb.append("}");
return sb.toString();
}
@Override
public PublicAccessBlockConfiguration clone() {
try {
return (PublicAccessBlockConfiguration) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy