All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.skjolber.packing.api.PackagerResult Maven / Gradle / Ivy

There is a newer version: 3.0.9
Show newest version
package com.github.skjolber.packing.api;

import java.util.List;

public class PackagerResult {

	protected final long duration;
	protected final List containers;
	
	public PackagerResult(List containers, long duration) {
		super();
		this.containers = containers;
		this.duration = duration;
	}

	public List getContainers() {
		return containers;
	}
	
	public long getDuration() {
		return duration;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy