Package com.sandrini.sandelivery.model

Examples of com.sandrini.sandelivery.model.Chat


    public List<Chat> getAllChats() {
        return getSession().createQuery("from Chat order by name").list();
    }

    public void deleteChat(Long chatId) {
        Chat chat = getChat(chatId);
        if (chat != null) {
            getSession().delete(chat);
        }
    }
View Full Code Here


            return null;
        }
    }

    public void createChat(String name, String image, String email) {
        Chat chat = new Chat();
        chat.setName(name);
        chat.setEmail(email);
        chat.setImage(image);
        chatDAO.createChat(chat);
    }
View Full Code Here

TOP

Related Classes of com.sandrini.sandelivery.model.Chat

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.