org.opencps.notificationmgt.search.NotificationStatusConfigSearch.java Source code

Java tutorial

Introduction

Here is the source code for org.opencps.notificationmgt.search.NotificationStatusConfigSearch.java

Source

/*******************************************************************************
 * OpenCPS is the open source Core Public Services software
 * Copyright (C) 2016-present OpenCPS community
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * any later version.
 *
 * This program 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 Affero General Public License for more details.
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *******************************************************************************/

package org.opencps.notificationmgt.search;

import java.util.ArrayList;
import java.util.List;

import javax.portlet.PortletRequest;
import javax.portlet.PortletURL;

import org.opencps.datamgt.model.DictItem;
import org.opencps.util.DateTimeUtil;

import com.liferay.portal.kernel.dao.search.SearchContainer;
import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;

/**
 * @author nhanhoang
 *
 */
public class NotificationStatusConfigSearch extends SearchContainer<DictItem> {
    static List<String> headerNames = new ArrayList<String>();
    static {
        headerNames.add("row-index");
        headerNames.add("status");
        headerNames.add("create-date");
        headerNames.add("modified-date");
        headerNames.add("inuse");

    }

    public static final String EMPTY_RESULTS_MESSAGE = "no-notification-config-where-found";

    public NotificationStatusConfigSearch(PortletRequest portletRequest, int delta, PortletURL iteratorURL) {

        super(portletRequest, new NotificationStatusConfigDisplayTerms(portletRequest),
                new NotificationStatusConfigSearchTerms(portletRequest), DEFAULT_CUR_PARAM, delta, iteratorURL,
                headerNames, EMPTY_RESULTS_MESSAGE);

        // PortletConfig portletConfig = (PortletConfig)
        // portletRequest.getAttribute(JavaConstants.JAVAX_PORTLET_CONFIG);

        NotificationStatusConfigDisplayTerms displayTerms = (NotificationStatusConfigDisplayTerms) getDisplayTerms();

        iteratorURL.setParameter(NotificationStatusConfigDisplayTerms.CREATE_DATE,
                DateTimeUtil.convertDateToString(displayTerms.getCreateDate(), DateTimeUtil._VN_DATE_TIME_FORMAT));
        iteratorURL.setParameter(NotificationStatusConfigDisplayTerms.MODIFIED_DATE, DateTimeUtil
                .convertDateToString(displayTerms.getModifiedDate(), DateTimeUtil._VN_DATE_TIME_FORMAT));
        iteratorURL.setParameter(NotificationStatusConfigDisplayTerms.USER_ID,
                String.valueOf(displayTerms.getUserId()));

        iteratorURL.setParameter(NotificationStatusConfigDisplayTerms.NOTICE_CONFIG_ID,
                String.valueOf(displayTerms.getNotiStatusConfigId()));
        iteratorURL.setParameter(NotificationStatusConfigDisplayTerms.DOSSIER_NEXT_STATUS,
                String.valueOf(displayTerms.getDossierNextStatus()));
        iteratorURL.setParameter(NotificationStatusConfigDisplayTerms.IS_SEND_NOTIFICATION,
                String.valueOf(displayTerms.isSendNotification));

    }

    public NotificationStatusConfigSearch(PortletRequest portletRequest, PortletURL iteratorURL) {

        this(portletRequest, DEFAULT_DELTA, iteratorURL);
    }

    private static Log _log = LogFactoryUtil.getLog(NotificationStatusConfigSearch.class);

}