Package com.bugyal.imentor.frontend.shared

Examples of com.bugyal.imentor.frontend.shared.OpportunityVO


        10, subjects, subjects));
   
    assertNotNull(pvo.getId());
    assertTrue(pvo.getId() > 0);
   
    msi.createOpportunity(new OpportunityVO(null, subjects, 2, 6, TestLocations.GACHIBOWLI.getLatitude(),
        TestLocations.GACHIBOWLI.getLongitude(), 10,
        TestLocations.GACHIBOWLI.getLocationString(), "message",0));
   
    List<OpportunityVO> opportunities = msi.find(subjects, pvo);
    assertNotNull(opportunities);
View Full Code Here


    // opportunity.
    if (o == null) {
      return null;
    }
   
    return new OpportunityVO(o.getKey().getId(), o.getSubjects(),
        o.getRequiredMentors(), o.getPriority(), o.getLoc()
            .getLatitude(), o.getLoc().getLongitude(), o.getLoc()
            .getActiveRadius(), o.getLoc().getLocationString(),
        o.getMessage(),o.getLastModifiedTime());
  }
View Full Code Here

    if (event.getSource() == btnCreate) {
      if (!(subWidget.getSubjects().isEmpty())
          && !(tbLocation.getText().contains("Please, Use the Map"))) {
        Long id = showingOpportunity == null ? null
            : showingOpportunity.getId();
        OpportunityVO oppVO = new OpportunityVO(id, subWidget
            .getSubjects(), 1, 0, lData.getLatitude(), lData
            .getLongitude(), 1, tbLocation.getText(), txtMessage
            .getText(), 0);

        if (id == null) {
View Full Code Here

TOP

Related Classes of com.bugyal.imentor.frontend.shared.OpportunityVO

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.