/**
* Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.commsen.sample.portlet.chatrooms.model;
/**
* The model interface for the Message service. Represents a row in the "Chatrooms_Message" database table, with each column mapped to a property of this class.
*
* <p>
* Never modify this interface directly. Add methods to {@link com.commsen.sample.portlet.chatrooms.model.impl.MessageImpl} and rerun ServiceBuilder to automatically copy the method declarations to this interface.
* </p>
*
* <p>
* Never reference this interface directly. All methods that expect a message model instance should use the {@link Message} interface instead.
* </p>
*
* @author Milen Dyankov
* @see MessageModel
* @see com.commsen.sample.portlet.chatrooms.model.impl.MessageImpl
* @see com.commsen.sample.portlet.chatrooms.model.impl.MessageModelImpl
* @generated
*/
public interface Message extends MessageModel {
}