コード例 #1
0
  public void setClassName(String className) {
    long classNameId = 0;

    if (Validator.isNotNull(className)) {
      classNameId = PortalUtil.getClassNameId(className);
    }

    setClassNameId(classNameId);
  }
コード例 #2
0
  @Override
  public void setModelAttributes(Map<String, Object> attributes) {
    Long subscriptionId = (Long) attributes.get("subscriptionId");

    if (subscriptionId != null) {
      setSubscriptionId(subscriptionId);
    }

    Long companyId = (Long) attributes.get("companyId");

    if (companyId != null) {
      setCompanyId(companyId);
    }

    Long userId = (Long) attributes.get("userId");

    if (userId != null) {
      setUserId(userId);
    }

    String userName = (String) attributes.get("userName");

    if (userName != null) {
      setUserName(userName);
    }

    Date createDate = (Date) attributes.get("createDate");

    if (createDate != null) {
      setCreateDate(createDate);
    }

    Date modifiedDate = (Date) attributes.get("modifiedDate");

    if (modifiedDate != null) {
      setModifiedDate(modifiedDate);
    }

    Long classNameId = (Long) attributes.get("classNameId");

    if (classNameId != null) {
      setClassNameId(classNameId);
    }

    Long classPK = (Long) attributes.get("classPK");

    if (classPK != null) {
      setClassPK(classPK);
    }

    String frequency = (String) attributes.get("frequency");

    if (frequency != null) {
      setFrequency(frequency);
    }
  }