BrightSide Workbench Full Report + Source Code
CurrentCompany.java
Go to the documentation of this file.
1 /*
2  * TurrĂ³ i Cutiller Foundation. License notice.
3  * Copyright (C) 2012 Lluis TurrĂ³ Cutiller <http://www.turro.org/>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Affero General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU Affero General Public License for more details.
14  *
15  * You should have received a copy of the GNU Affero General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  */
18 
19 package org.turro.financials.command;
20 
21 import java.util.HashSet;
22 import java.util.Set;
23 import org.turro.action.DefaultPlugin;
24 import org.turro.annotation.ElephantPlugin;
25 import org.turro.financials.entity.Company;
26 import org.turro.financials.entity.Contract;
27 import org.turro.financials.entity.Department;
28 import org.turro.financials.entity.Headquarters;
29 import org.turro.financials.model.business.CompanyWrapper;
30 
35 @ElephantPlugin
36 public class CurrentCompany extends DefaultPlugin {
37 
38  @Override
39  public String getName() {
40  return "CurrentCompany";
41  }
42 
43  @Override
44  public boolean stopPropagating() {
45  return true;
46  }
47 
48  @Override
49  public void execute() {
51  if(company != null) {
52  addResult("company", company);
53  Set<Contract> departmentStores = new HashSet<>();
54  for(Headquarters headquarters : company.getHeadquarters()) {
55  for(Department department : headquarters.getDepartments()) {
56  departmentStores.addAll(department.getStores());
57  }
58  }
59  addResult("departmentStores", departmentStores);
60  }
61  }
62 
63 }
Object addResult(String key, Object value)
Set< Headquarters > getHeadquarters()
Definition: Company.java:80