com.amazonaws.services.elasticbeanstalk.model.SourceBuildInformation Maven / Gradle / Ivy
Show all versions of aws-java-sdk-elasticbeanstalk Show documentation
/*
* Copyright 2014-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.amazonaws.services.elasticbeanstalk.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Location of the source code for an application version.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class SourceBuildInformation implements Serializable, Cloneable {
/**
*
* The type of repository.
*
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
*
*/
private String sourceType;
/**
*
* Location where the repository is stored.
*
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
*
*/
private String sourceRepository;
/**
*
* The location of the source code, as a formatted string, depending on the value of SourceRepository
*
*
* -
*
* For CodeCommit
, the format is the repository name and commit ID, separated by a forward slash. For
* example, my-git-repo/265cfa0cf6af46153527f55d6503ec030551f57a
.
*
*
* -
*
* For S3
, the format is the S3 bucket name and object key, separated by a forward slash. For example,
* my-s3-bucket/Folders/my-source-file
.
*
*
*
*/
private String sourceLocation;
/**
*
* The type of repository.
*
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
*
*
* @param sourceType
* The type of repository.
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
* @see SourceType
*/
public void setSourceType(String sourceType) {
this.sourceType = sourceType;
}
/**
*
* The type of repository.
*
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
*
*
* @return The type of repository.
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
* @see SourceType
*/
public String getSourceType() {
return this.sourceType;
}
/**
*
* The type of repository.
*
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
*
*
* @param sourceType
* The type of repository.
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see SourceType
*/
public SourceBuildInformation withSourceType(String sourceType) {
setSourceType(sourceType);
return this;
}
/**
*
* The type of repository.
*
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
*
*
* @param sourceType
* The type of repository.
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
* @see SourceType
*/
public void setSourceType(SourceType sourceType) {
withSourceType(sourceType);
}
/**
*
* The type of repository.
*
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
*
*
* @param sourceType
* The type of repository.
*
* -
*
* Git
*
*
* -
*
* Zip
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see SourceType
*/
public SourceBuildInformation withSourceType(SourceType sourceType) {
this.sourceType = sourceType.toString();
return this;
}
/**
*
* Location where the repository is stored.
*
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
*
*
* @param sourceRepository
* Location where the repository is stored.
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
* @see SourceRepository
*/
public void setSourceRepository(String sourceRepository) {
this.sourceRepository = sourceRepository;
}
/**
*
* Location where the repository is stored.
*
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
*
*
* @return Location where the repository is stored.
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
* @see SourceRepository
*/
public String getSourceRepository() {
return this.sourceRepository;
}
/**
*
* Location where the repository is stored.
*
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
*
*
* @param sourceRepository
* Location where the repository is stored.
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see SourceRepository
*/
public SourceBuildInformation withSourceRepository(String sourceRepository) {
setSourceRepository(sourceRepository);
return this;
}
/**
*
* Location where the repository is stored.
*
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
*
*
* @param sourceRepository
* Location where the repository is stored.
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
* @see SourceRepository
*/
public void setSourceRepository(SourceRepository sourceRepository) {
withSourceRepository(sourceRepository);
}
/**
*
* Location where the repository is stored.
*
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
*
*
* @param sourceRepository
* Location where the repository is stored.
*
* -
*
* CodeCommit
*
*
* -
*
* S3
*
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see SourceRepository
*/
public SourceBuildInformation withSourceRepository(SourceRepository sourceRepository) {
this.sourceRepository = sourceRepository.toString();
return this;
}
/**
*
* The location of the source code, as a formatted string, depending on the value of SourceRepository
*
*
* -
*
* For CodeCommit
, the format is the repository name and commit ID, separated by a forward slash. For
* example, my-git-repo/265cfa0cf6af46153527f55d6503ec030551f57a
.
*
*
* -
*
* For S3
, the format is the S3 bucket name and object key, separated by a forward slash. For example,
* my-s3-bucket/Folders/my-source-file
.
*
*
*
*
* @param sourceLocation
* The location of the source code, as a formatted string, depending on the value of
* SourceRepository
*
* -
*
* For CodeCommit
, the format is the repository name and commit ID, separated by a forward
* slash. For example, my-git-repo/265cfa0cf6af46153527f55d6503ec030551f57a
.
*
*
* -
*
* For S3
, the format is the S3 bucket name and object key, separated by a forward slash. For
* example, my-s3-bucket/Folders/my-source-file
.
*
*
*/
public void setSourceLocation(String sourceLocation) {
this.sourceLocation = sourceLocation;
}
/**
*
* The location of the source code, as a formatted string, depending on the value of SourceRepository
*
*
* -
*
* For CodeCommit
, the format is the repository name and commit ID, separated by a forward slash. For
* example, my-git-repo/265cfa0cf6af46153527f55d6503ec030551f57a
.
*
*
* -
*
* For S3
, the format is the S3 bucket name and object key, separated by a forward slash. For example,
* my-s3-bucket/Folders/my-source-file
.
*
*
*
*
* @return The location of the source code, as a formatted string, depending on the value of
* SourceRepository
*
* -
*
* For CodeCommit
, the format is the repository name and commit ID, separated by a forward
* slash. For example, my-git-repo/265cfa0cf6af46153527f55d6503ec030551f57a
.
*
*
* -
*
* For S3
, the format is the S3 bucket name and object key, separated by a forward slash. For
* example, my-s3-bucket/Folders/my-source-file
.
*
*
*/
public String getSourceLocation() {
return this.sourceLocation;
}
/**
*
* The location of the source code, as a formatted string, depending on the value of SourceRepository
*
*
* -
*
* For CodeCommit
, the format is the repository name and commit ID, separated by a forward slash. For
* example, my-git-repo/265cfa0cf6af46153527f55d6503ec030551f57a
.
*
*
* -
*
* For S3
, the format is the S3 bucket name and object key, separated by a forward slash. For example,
* my-s3-bucket/Folders/my-source-file
.
*
*
*
*
* @param sourceLocation
* The location of the source code, as a formatted string, depending on the value of
* SourceRepository
*
* -
*
* For CodeCommit
, the format is the repository name and commit ID, separated by a forward
* slash. For example, my-git-repo/265cfa0cf6af46153527f55d6503ec030551f57a
.
*
*
* -
*
* For S3
, the format is the S3 bucket name and object key, separated by a forward slash. For
* example, my-s3-bucket/Folders/my-source-file
.
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public SourceBuildInformation withSourceLocation(String sourceLocation) {
setSourceLocation(sourceLocation);
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 (getSourceType() != null)
sb.append("SourceType: ").append(getSourceType()).append(",");
if (getSourceRepository() != null)
sb.append("SourceRepository: ").append(getSourceRepository()).append(",");
if (getSourceLocation() != null)
sb.append("SourceLocation: ").append(getSourceLocation());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof SourceBuildInformation == false)
return false;
SourceBuildInformation other = (SourceBuildInformation) obj;
if (other.getSourceType() == null ^ this.getSourceType() == null)
return false;
if (other.getSourceType() != null && other.getSourceType().equals(this.getSourceType()) == false)
return false;
if (other.getSourceRepository() == null ^ this.getSourceRepository() == null)
return false;
if (other.getSourceRepository() != null && other.getSourceRepository().equals(this.getSourceRepository()) == false)
return false;
if (other.getSourceLocation() == null ^ this.getSourceLocation() == null)
return false;
if (other.getSourceLocation() != null && other.getSourceLocation().equals(this.getSourceLocation()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getSourceType() == null) ? 0 : getSourceType().hashCode());
hashCode = prime * hashCode + ((getSourceRepository() == null) ? 0 : getSourceRepository().hashCode());
hashCode = prime * hashCode + ((getSourceLocation() == null) ? 0 : getSourceLocation().hashCode());
return hashCode;
}
@Override
public SourceBuildInformation clone() {
try {
return (SourceBuildInformation) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}