Package org.openblend.fejstbuk.domain

Examples of org.openblend.fejstbuk.domain.Linked


    public Question postQuestion(String question) {
        return dao.addQuestion(current, question);
    }

    public Comment addComment(long linkedId, String comment) {
        Linked linked = em.find(Linked.class, linkedId);
        if (linked != null) {
            return dao.addComment(linked, current, comment);
        }
        return null;
    }
View Full Code Here

TOP

Related Classes of org.openblend.fejstbuk.domain.Linked

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.