com.bazaarvoice.maven.plugin.s3repo.create.CreateOrUpdateContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3repo-maven-plugin Show documentation
Show all versions of s3repo-maven-plugin Show documentation
Create or update an S3 YUM repository.
package com.bazaarvoice.maven.plugin.s3repo.create;
import com.amazonaws.services.s3.AmazonS3;
import com.bazaarvoice.maven.plugin.s3repo.S3RepositoryPath;
import com.bazaarvoice.maven.plugin.s3repo.support.LocalYumRepoFacade;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
final class CreateOrUpdateContext {
private AmazonS3 s3Session;
private S3RepositoryPath s3RepositoryPath;
private LocalYumRepoFacade localYumRepo;
private final List synthesizedFiles = new ArrayList();
public AmazonS3 getS3Session() {
return s3Session;
}
public void setS3Session(AmazonS3 s3Session) {
this.s3Session = s3Session;
}
public void setS3RepositoryPath(S3RepositoryPath s3RepositoryPath) {
this.s3RepositoryPath = s3RepositoryPath;
}
public S3RepositoryPath getS3RepositoryPath() {
return s3RepositoryPath;
}
public LocalYumRepoFacade getLocalYumRepo() {
return localYumRepo;
}
public void setLocalYumRepo(LocalYumRepoFacade localYumRepo) {
this.localYumRepo = localYumRepo;
}
public void addSynthesizedFile(File synthesizedFile) {
synthesizedFiles.add(synthesizedFile);
}
public List getSynthesizedFiles() {
return synthesizedFiles;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy