com.capitalone.dashboard.model.RepositoryDigest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core package shared by API layer and Microservices
package com.capitalone.dashboard.model;
public class RepositoryDigest {
private String digest;
private String repository;
private String registry;
public String getDigest() {
return digest;
}
public void setDigest(String digest) {
this.digest = digest;
}
public String getRepository() {
return repository;
}
public void setRepository(String repository) {
this.repository = repository;
}
public String getRegistry() {
return registry;
}
public void setRegistry(String registry) {
this.registry = registry;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy