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 getAllMarkedForUpload() { // TODO: Implement return new ArrayList<>(); } }