001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
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    }