Package net.lr.tutorial.karaf.vote.model

Examples of net.lr.tutorial.karaf.vote.model.Voting


    this.voteService = voteService;
  }

  protected Object doExecute() throws Exception {
         System.out.println("Executing command list");
         Voting voting = voteService.getVoting(topic);
         System.out.println(voting.getStats());
         return null;
    }
View Full Code Here


  @Override
  public Voting getVoting(String topic) {
    if (this.votingMap.containsKey(topic)) {
      return votingMap.get(topic);
    } else {
      Voting voting = new Voting(topic);
      this.votingMap.put(topic, voting);
      return voting;
    }
  }
View Full Code Here

TOP

Related Classes of net.lr.tutorial.karaf.vote.model.Voting

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.