summaryrefslogblamecommitdiffstats
path: root/src/main/java/org/openslx/satellitedaemon/db/DbImage.java
blob: 9004d6a142d06dfc9068ec04d700aafdd63df970 (plain) (tree)


















                                                                              
                                                           





                                         
package org.openslx.satellitedaemon.db;

import java.util.ArrayList;
import java.util.List;

/**
 * Represents an image in the satellite's database (mostly from
 * m_VLData_imageInfo)
 */
public class DbImage
{

	/**
	 * Returns a list of all images on this satellite that should be
	 * uploaded to the central server.
	 * 
	 * @return list of images that are marked for upload, where the upload
	 *         was either not started yet, or is incomplete
	 */
	public static List<DbImage> getAllMarkedForUpload()
	{
		// TODO: Implement
		return new ArrayList<>();
	}

}