Package org.fenixedu.academic.domain

Examples of org.fenixedu.academic.domain.UnitFile


    @Atomic
    public static void run(java.io.File file, String originalFilename, String displayName, String description, String tags,
            Group permittedGroup, Unit unit, Person person) throws FenixServiceException {

        final byte[] content = read(file);
        new UnitFile(unit, person, description, tags, originalFilename, displayName, content,
                !isPublic(permittedGroup) ? permittedGroup.or(UserGroup.of(person.getUser())) : permittedGroup);
    }
View Full Code Here

TOP

Related Classes of org.fenixedu.academic.domain.UnitFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.