Package org.apache.openmeetings.persistence.beans.basic

Examples of org.apache.openmeetings.persistence.beans.basic.OmTimeZone


    if (userdata.containsKey(ldapAttrs.get("timezoneAttr"))
        && userdata.get(ldapAttrs.get("timezoneAttr")) != null)
      jName_timeZone = userdata.get(ldapAttrs.get("timezoneAttr"));
   
    //only change the timezone if there can be found some in the OpenMeetings database
    OmTimeZone omTimeZone = omTimeZoneDaoImpl.getOmTimeZone(jName_timeZone);
    if (omTimeZone != null) {
      user.setOmTimeZone(omTimeZone);
    }
 
  }
View Full Code Here

TOP

Related Classes of org.apache.openmeetings.persistence.beans.basic.OmTimeZone

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.