Package org.apache.openmeetings.persistence.beans.user

Examples of org.apache.openmeetings.persistence.beans.user.Salutation


   *
   * @param titelname
   */
  public Long addUserSalutation(String titelname, long fieldvalues_id) {
    try {
      Salutation ti = new Salutation();
      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;
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.persistence.beans.user.Salutation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.