dev.galasa.kubernetes.internal.resources.PodLogImpl Maven / Gradle / Ivy
/*
* Licensed Materials - Property of IBM
*
* (c) Copyright IBM Corp. 2020.
*/
package dev.galasa.kubernetes.internal.resources;
import dev.galasa.kubernetes.IPodLog;
/**
* A holder for the Pod Log
*
* @author Michael Baylis
*
*/
public class PodLogImpl implements IPodLog {
private final String name;
private final String log;
public PodLogImpl(String name, String log) {
this.name = name;
this.log = log;
}
@Override
public String getLog() {
return this.log;
}
public String getName() {
return this.name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy