package net.sourceforge.fenixedu.domain; import net.sourceforge.fenixedu.domain.accessControl.Group; import org.joda.time.DateTime; public class BaseFile extends BaseFile_Base { public BaseFile() { super(); setUploadTime(new DateTime()); } public BaseFile(String filename, String displayName, byte[] content, Group permittedGroup) { this(); init(displayName, filename, content, permittedGroup); } protected void init(String filename, String displayName, byte[] content, Group permittedGroup) { super.init(displayName, filename, content); setPermittedGroup(permittedGroup); } }