001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.model.impl;
016    
017    /**
018     * The extended model implementation for the UserNotificationDelivery service.
019     * Represents a row in the "UserNotificationDelivery" database table,
020     * with each column mapped to a property of this class.
021     *
022     * <p>
023     * Helper methods and all application logic should be put in this class.
024     * Whenever methods are added, rerun ServiceBuilder to copy their definitions
025     * into the {@link com.liferay.portal.model.UserNotificationDelivery} interface.
026     * </p>
027     *
028     * @author Brian Wing Shun Chan
029     */
030    public class UserNotificationDeliveryImpl
031            extends UserNotificationDeliveryBaseImpl {
032    
033            /**
034             * NOTE FOR DEVELOPERS:
035             *
036             * Never reference this class directly. All methods that expect a user
037             * notification delivery model instance should use the {@link
038             * com.liferay.portal.model.UserNotificationDelivery} interface instead.
039             */
040            public UserNotificationDeliveryImpl() {
041            }
042    
043    }