Examples of DmProduct


Examples of com.melitronic.domain.product.client.DmProduct

        if (entityColl != entityColl2) {
          entityColl.remove(domainTask);
          entityColl2.add(domainTask);
          entityColl2.size();
         
          DmProduct dmProduct =
            DmProductFactory.instance().getClient(getCallContext());
          dmProduct.move(domainTask, entity1, entity2, getCallContext());
        }
      }
    }
View Full Code Here

Examples of com.melitronic.domain.product.client.DmProduct

          changes.add(arr[1]);
        }
      }

      if (changes.size() > 0) {
        DmProduct dmProduct =
          DmProductFactory.instance().getClient(getCallContext());
        dmProduct.changePositions(changes, getCallContext());
      }
  }
View Full Code Here

Examples of com.melitronic.domain.product.client.DmProduct

  public boolean issueActionEditable() {
    return false;
  }

  public void storeAction(Action action, Person person) {
    DmProduct dmProduct =
      DmProductFactory.instance().getClient(getCallContext());
    Action resp = dmProduct.store(action, getIssue(getSelectedIssue()), person, getCallContext());
   
    action.setId(resp.getId());
   
    // getSelectedIssuesActions().add(resp);
  }
View Full Code Here

Examples of com.melitronic.domain.product.client.DmProduct

  private List<SelectItem> personsOptions = null;
  public List<SelectItem> getPersonsOptions() {
    if (personsOptions == null) {
      personsOptions = new ArrayList<SelectItem>();
     
      DmProduct dmProduct =
        DmProductFactory.instance().getClient(getCallContext());
      Collection<com.melitronic.domain.entity.Person> persons =
        dmProduct.findAllPersons(getCallContext());
      for (com.melitronic.domain.entity.Person person : persons) {
        SelectItem sel = new SelectItem(person, person.toLabel());
        personsOptions.add(sel);
      }
    }
View Full Code Here

Examples of com.melitronic.domain.product.client.DmProduct

   
    return null;
  }
 
  public void selectedEnvironmentUpdate() {
    DmProduct dmProduct = DmProductFactory.instance().getClient(getCallContext());
    Environment env = dmProduct.store(getSelectedEnvironment(), getCallContext());
   
    setSelectedEnvironment(env);
   
    environments = null;
  }
View Full Code Here

Examples of com.melitronic.domain.product.client.DmProduct

  public List<SelectItem> getPersonsOptions() {
    if (personsOptions == null) {
      personsOptions = new ArrayList<SelectItem>();

      DmProduct dmProduct = DmProductFactory.instance().getClient(
          getCallContext());
      Collection<com.melitronic.domain.entity.Person> persons = dmProduct
          .findAllPersons(getCallContext());
      String info = MessageUtil.getLocalizedValue("no_selection_string", Locale.getDefault());
      SelectItem sel = new SelectItem(new com.melitronic.domain.entity.Person(), info);
      personsOptions.add(sel);
      for (com.melitronic.domain.entity.Person person : persons) {
View Full Code Here

Examples of com.melitronic.domain.product.client.DmProduct

 
  public String getSprintBurndownData() {
    if (selectedSprint == null || ((Sprint)selectedSprint).getId() == null) {
      return "[0,0], [30,0]";
    }
    DmProduct dmProduct =
      DmProductFactory.instance().getClient(getCallContext());
    ArrayList data = dmProduct
      .getSprintBurndownData(((ProductDevelopmentUseCase)getUseCase()).getSprint((Sprint)selectedSprint), getCallContext());
    if (data == null || data.size() == 0) {
      return "[0,0], [30,0]";
    }
    StringBuffer sb = new StringBuffer();
View Full Code Here

Examples of com.melitronic.domain.product.client.DmProduct

  }
 
  private Collection<Team> getProductsTeams() {
      if ( productTeams == null ) {
       
        DmProduct dmProduct =
          DmProductFactory.instance().getClient(getCallContext());
       
        productTeams =
          dmProduct.findTeams((getProduct() != null ? getProduct().getId() : null), getCallContext());

      }
      return productTeams;
  }
View Full Code Here

Examples of com.melitronic.domain.product.client.DmProduct

   
  public List<AbstractEntity> getProductsDeployments() {
     
      if ( productsDeployments == null ) {
       
        DmProduct dmProduct =
          DmProductFactory.instance().getClient(getCallContext());
       
        Collection<Deployment> coll =
          dmProduct.findDeplyments((getProduct() != null ? getProduct().getId() : null), getCallContext());

        productsDeployments = new ArrayList<AbstractEntity>();
        for (Deployment depl : coll) {
          productsDeployments.add(depl);
        }
View Full Code Here

Examples of com.melitronic.domain.product.client.DmProduct

   
    public List<AbstractEntity> getProductItemGroups() {
     
      if ( productsItemGroups == null ) {
       
        DmProduct dmProduct =
          DmProductFactory.instance().getClient(getCallContext());
       
        Collection<ItemGroup> coll =
          dmProduct.findItemGroups((getProduct() != null ? getProduct().getId() : null), issueSearchCriteries, getCallContext());

        productsItemGroups = new ArrayList<AbstractEntity>();
        for (ItemGroup ig : coll) {
          productsItemGroups.add(ig);
        }
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.