(mssManifests);
}
/**
* A list of MSS manifest configurations.
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setMssManifests(java.util.Collection)} or {@link #withMssManifests(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param mssManifests
* A list of MSS manifest configurations.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public MssPackage withMssManifests(MssManifest... mssManifests) {
if (this.mssManifests == null) {
setMssManifests(new java.util.ArrayList(mssManifests.length));
}
for (MssManifest ele : mssManifests) {
this.mssManifests.add(ele);
}
return this;
}
/**
* A list of MSS manifest configurations.
*
* @param mssManifests
* A list of MSS manifest configurations.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public MssPackage withMssManifests(java.util.Collection mssManifests) {
setMssManifests(mssManifests);
return this;
}
/**
* The duration (in seconds) of each segment.
*
* @param segmentDurationSeconds
* The duration (in seconds) of each segment.
*/
public void setSegmentDurationSeconds(Integer segmentDurationSeconds) {
this.segmentDurationSeconds = segmentDurationSeconds;
}
/**
* The duration (in seconds) of each segment.
*
* @return The duration (in seconds) of each segment.
*/
public Integer getSegmentDurationSeconds() {
return this.segmentDurationSeconds;
}
/**
* The duration (in seconds) of each segment.
*
* @param segmentDurationSeconds
* The duration (in seconds) of each segment.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public MssPackage withSegmentDurationSeconds(Integer segmentDurationSeconds) {
setSegmentDurationSeconds(segmentDurationSeconds);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getEncryption() != null)
sb.append("Encryption: ").append(getEncryption()).append(",");
if (getMssManifests() != null)
sb.append("MssManifests: ").append(getMssManifests()).append(",");
if (getSegmentDurationSeconds() != null)
sb.append("SegmentDurationSeconds: ").append(getSegmentDurationSeconds());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof MssPackage == false)
return false;
MssPackage other = (MssPackage) obj;
if (other.getEncryption() == null ^ this.getEncryption() == null)
return false;
if (other.getEncryption() != null && other.getEncryption().equals(this.getEncryption()) == false)
return false;
if (other.getMssManifests() == null ^ this.getMssManifests() == null)
return false;
if (other.getMssManifests() != null && other.getMssManifests().equals(this.getMssManifests()) == false)
return false;
if (other.getSegmentDurationSeconds() == null ^ this.getSegmentDurationSeconds() == null)
return false;
if (other.getSegmentDurationSeconds() != null && other.getSegmentDurationSeconds().equals(this.getSegmentDurationSeconds()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getEncryption() == null) ? 0 : getEncryption().hashCode());
hashCode = prime * hashCode + ((getMssManifests() == null) ? 0 : getMssManifests().hashCode());
hashCode = prime * hashCode + ((getSegmentDurationSeconds() == null) ? 0 : getSegmentDurationSeconds().hashCode());
return hashCode;
}
@Override
public MssPackage clone() {
try {
return (MssPackage) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.mediapackagevod.model.transform.MssPackageMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}