Package com.liusoft.dlog4j.base

Examples of com.liusoft.dlog4j.base.ContactInfo


    //ubean.setLastAddr(request.getRemoteAddr());
    ubean.setPassword(getPassword())
    if (StringUtils.isNotEmpty(getResume()))
      ubean.setResume(super.autoFiltrate(getResume()));

    ContactInfo ci = new ContactInfo();
    if (StringUtils.isNotEmpty(getEmail()) && StringUtils.isEmail(getEmail()))
      ci.setEmail(getEmail());
    if (StringUtils.isNotEmpty(getHomePage()))
      ci.setHomePage(getHomePage());
    if (StringUtils.isNotEmpty(getMobile()))
      ci.setMobile(getMobile());
    if (StringUtils.isNotEmpty(getMsn()))
      ci.setMsn(getMsn());
    if (StringUtils.isNotEmpty(getQq()))
      ci.setQq(getQq());
    if (StringUtils.isNotEmpty(getProvince()))
      ci.setProvince(getProvince());
    if (StringUtils.isNotEmpty(getCity()))
      ci.setCity(getCity());
    //ci.setMobile(RequestUtils.getRequestMobile(request));
    ubean.setContactInfo(ci);

    ubean.setSex(getSex());
View Full Code Here

TOP

Related Classes of com.liusoft.dlog4j.base.ContactInfo

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.