Package com.denimgroup.threadfix.data.entities

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


    return practice;
  }

  private SurveyObjective constructObjective(Element objectiveElement) {
    SurveyObjective objective = new SurveyObjective();
    objective.setDescription(objectiveElement.elementText("description"));
    objective.setLevelNumber(Integer.parseInt(objectiveElement.attributeValue("level")));

    for (Object questionElement : objectiveElement.elements("question")) {
      objective.getSurveyQuestions().add(constructQuestion((Element) questionElement));
    }

    for (SurveyQuestion question : objective.getSurveyQuestions()) {
      question.setSurveyObjective(objective);
    }

    return objective;
  }
View Full Code Here

TOP

Related Classes of com.denimgroup.threadfix.data.entities.SurveyObjective

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.