Examples of VulnerabilityComment


Examples of com.denimgroup.threadfix.data.entities.VulnerabilityComment

    if (user == null) {
      log.error("Invalid user.");
      return USER;
    }
   
    VulnerabilityComment comment = new VulnerabilityComment();
        comment.setTags(vulnerabilityComment.getTags());
    comment.setComment(trimmedComment);
    comment.setVulnerability(vuln);
    comment.setTime(new Date());
    comment.setUser(user);
    vulnerabilityCommentDao.saveOrUpdate(comment);
   
    return VALID;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.