Examples of PollType


Examples of org.apache.openmeetings.db.entity.room.PollType

  @Autowired
  private RoomDao roomDao;

  public Long addPollType(Long labelId, Boolean isNumeric) {
    log.debug("Adding poll type: " + labelId + ", " + isNumeric);
    PollType pt = new PollType();
    pt.setLabel(fieldValDao.get(labelId));
    pt.setIsNumericAnswer(isNumeric);

    em.persist(pt);
   
    return pt.getPollTypesId();
  }
View Full Code Here

Examples of org.apache.openmeetings.persistence.beans.poll.PollType

  @Autowired
  private RoomDao roomDao;

  public Long addPollType(Long labelId, Boolean isNumeric) {
    log.debug("Adding poll type: " + labelId + ", " + isNumeric);
    PollType pt = new PollType();
    pt.setLabel(fieldManager.getFieldvaluesById(labelId));
    pt.setIsNumericAnswer(isNumeric);

    em.persist(pt);
   
    return pt.getPollTypesId();
  }
View Full Code Here

Examples of org.openmeetings.app.conference.videobeans.PollType

 
  public List<PollType> getPollTypeList(){
    List<PollType> pollTypesList = new LinkedList<PollType>();
    try {
     
      PollType pt = new PollType();
      pt.setPollTypeLabelid(26);
      pt.setIsNumericAnswer("no");
      pt.setPollTypesId(1);
      pollTypesList.add(pt);
     
      pt = new PollType();
      pt.setPollTypeLabelid(27);
      pt.setIsNumericAnswer("yes");
      pt.setPollTypesId(2);
      pollTypesList.add(pt);
     
    } catch (Exception err){
      log.error("[getPollTypeList]",err);
    }
View Full Code Here

Examples of org.openmeetings.app.persistence.beans.poll.PollType

  @Autowired
  private Roommanagement roommanagement;

  public Long addPollType(Long labelId, Boolean isNumeric) {
    log.debug("Adding poll type: " + labelId + ", " + isNumeric);
    PollType pt = new PollType();
    pt.setLabel(fieldmanagment.getFieldvaluesById(labelId));
    pt.setIsNumericAnswer(isNumeric);

    em.persist(pt);
   
    return pt.getPollTypesId();
  }
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.