Package eu.lsem.bakalarka.model

Examples of eu.lsem.bakalarka.model.Thesis


     *
     * @return
     */
    public Resolution downloadThesis() throws IOException, InterruptedException {

        Thesis t = thesesDao.getThesis(id, null);
        String path = t.getRelativeThesisPath();
        String absolutePath = thesesService.getDipstoreResourceAbsolutePath(path);
        return new StreamingResolution("application/zip", fileSystemUtils.getThesisArchiveInputStream(new File(absolutePath))).setFilename(t.getLogin() + ".zip");
    }
View Full Code Here


     * AJAXov� event, ktery vraci javascriptovy objekt s plnou diplomkou. Tady je nutne escapovat html tagy a obarvit hledane vyrazy
     *
     * @return
     */
    public Resolution ajaxGetDetails() {
        Thesis t;

        if (thesisSearch != null && thesisSearch.isLikeSearch()) { //bylo hledani likem
            t = thesesDao.getThesis(id, null);
            thesesService.escapeThesis(t);
            thesesService.highlightThesisLikeSearch(t, thesisSearch);
View Full Code Here

TOP

Related Classes of eu.lsem.bakalarka.model.Thesis

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.