/** * Copyright (c) 2009-2014 Câmara dos Deputados. Todos os direitos reservados. * * e-Democracia é um software livre; você pode redistribuí-lo e/ou modificá-lo dentro * dos termos da Licença Pública Geral Menor GNU como publicada pela Fundação do * Software Livre (FSF); na versão 2.1 da Licença, ou (na sua opinião) qualquer versão. * * Este programa é distribuído na esperança de que possa ser útil, mas SEM NENHUMA GARANTIA; * sem uma garantia implícita de ADEQUAÇÃO a qualquer MERCADO ou APLICAÇÃO EM PARTICULAR. * Veja a Licença Pública Geral Menor GNU para maiores detalhes. */ package br.gov.camara.edemocracia.portlets.chat.model.impl; /** * The extended model implementation for the ChatRoomTwitter service. Represents * a row in the "CDChat_ChatRoomTwitter" database table, with each * column mapped to a property of this class. * * <p> * Helper methods and all application logic should be put in this class. * Whenever methods are added, rerun ServiceBuilder to copy their definitions * into the * {@link br.gov.camara.edemocracia.portlets.chat.model.ChatRoomTwitter} * interface. * </p> * * @author Ricardo Lima */ public class ChatRoomTwitterImpl extends ChatRoomTwitterBaseImpl { /* * NOTE FOR DEVELOPERS: * * Never reference this class directly. All methods that expect a chat room * twitter model instance should use the {@link * br.gov.camara.edemocracia.portlets.chat.model.ChatRoomTwitter} interface * instead. */ public ChatRoomTwitterImpl() { } }