org.openmeetings.app.data.user.Salutationmanagement.java Source code

Java tutorial

Introduction

Here is the source code for org.openmeetings.app.data.user.Salutationmanagement.java

Source

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License") +  you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
package org.openmeetings.app.data.user;

import java.util.Date;
import java.util.List;

import javax.persistence.EntityManager;
import javax.persistence.PersistenceContext;
import javax.persistence.TypedQuery;
import javax.persistence.criteria.CriteriaBuilder;
import javax.persistence.criteria.CriteriaQuery;
import javax.persistence.criteria.Root;

import org.openmeetings.app.OpenmeetingsVariables;
import org.openmeetings.app.data.basic.Fieldmanagment;
import org.openmeetings.app.persistence.beans.user.Salutations;
import org.red5.logging.Red5LoggerFactory;
import org.slf4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;

/**
 * 
 * @author swagner
 * 
 */
@Transactional
public class Salutationmanagement {

    private static final Logger log = Red5LoggerFactory.getLogger(Salutationmanagement.class,
            OpenmeetingsVariables.webAppRootKey);

    @Autowired
    private Fieldmanagment fieldmanagment;

    @PersistenceContext
    private EntityManager em;

    /**
     * Adds a new Salutation to the table Titles
     * 
     * @param titelname
     */
    public Long addUserSalutation(String titelname, long fieldvalues_id) {
        try {
            Salutations ti = new Salutations();
            ti.setName(titelname);
            ti.setDeleted("false");
            ti.setFieldvalues_id(fieldvalues_id);
            ti.setStarttime(new Date());
            ti = em.merge(ti);
            Long salutations_id = ti.getSalutations_id();
            return salutations_id;
        } catch (Exception ex2) {
            log.error("[addUserSalutation]", ex2);
        }
        return null;
    }

    /**
     * get a list of all availible Salutations
     * 
     * @param user_level
     * @return
     */
    public List<Salutations> getUserSalutations(long language_id) {
        try {
            CriteriaBuilder cb = em.getCriteriaBuilder();
            CriteriaQuery<Salutations> cq = cb.createQuery(Salutations.class);
            Root<Salutations> from = cq.from(Salutations.class);
            CriteriaQuery<Salutations> select = cq.select(from);
            TypedQuery<Salutations> q = em.createQuery(select);
            List<Salutations> ll = q.getResultList();
            for (Salutations ti : ll) {
                ti.setLabel(fieldmanagment.getFieldByIdAndLanguage(ti.getFieldvalues_id(), language_id));
            }

            return ll;
        } catch (Exception ex2) {
            log.error("[addUserSalutation]", ex2);
        }
        return null;
    }

}