~dhis2-devs-core/dhis2/dhis2-patient-tz

« back to all changes in this revision

Viewing changes to local/tz/dhis-web-maintenance-patient-tz/src/main/java/org/hisp/dhis/patient/action/caseaggregation/GetCaseAggregationConditionAction.java

  • Committer: John Francis Mukulu
  • Date: 2011-08-09 06:36:18 UTC
  • mfrom: (4244.1.21 dhis2)
  • Revision ID: john.f.mukulu@gmail.com-20110809063618-wad1pcc9fd1mnc6k
[merge]

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (c) 2004-2010, University of Oslo
3
 
 * All rights reserved.
4
 
 *
5
 
 * Redistribution and use in source and binary forms, with or without
6
 
 * modification, are permitted provided that the following conditions are met:
7
 
 * * Redistributions of source code must retain the above copyright notice, this
8
 
 *   list of conditions and the following disclaimer.
9
 
 * * Redistributions in binary form must reproduce the above copyright notice,
10
 
 *   this list of conditions and the following disclaimer in the documentation
11
 
 *   and/or other materials provided with the distribution.
12
 
 * * Neither the name of the HISP project nor the names of its contributors may
13
 
 *   be used to endorse or promote products derived from this software without
14
 
 *   specific prior written permission.
15
 
 *
16
 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17
 
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
 
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
 
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
20
 
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21
 
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22
 
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
23
 
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25
 
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 
 */
27
 
 
28
 
package org.hisp.dhis.patient.action.caseaggregation;
29
 
 
30
 
import org.hisp.dhis.caseaggregation.CaseAggregationCondition;
31
 
import org.hisp.dhis.caseaggregation.CaseAggregationConditionService;
32
 
 
33
 
import com.opensymphony.xwork2.Action;
34
 
 
35
 
/**
36
 
 * @author Chau Thu Tran
37
 
 * 
38
 
 * @version GetCaseAggregationConditionAction.java Nov 18, 2010 10:42:01 AM
39
 
 */
40
 
public class GetCaseAggregationConditionAction
41
 
    implements Action
42
 
{
43
 
    // -------------------------------------------------------------------------
44
 
    // Dependency
45
 
    // -------------------------------------------------------------------------
46
 
 
47
 
    private CaseAggregationConditionService aggregationConditionService;
48
 
 
49
 
    // -------------------------------------------------------------------------
50
 
    // Input && Output
51
 
    // -------------------------------------------------------------------------
52
 
 
53
 
    private Integer id;
54
 
 
55
 
    private CaseAggregationCondition caseAggregation;
56
 
 
57
 
    private String description;
58
 
    
59
 
    // -------------------------------------------------------------------------
60
 
    // Getters && Setters
61
 
    // -------------------------------------------------------------------------
62
 
 
63
 
    public void setAggregationConditionService( CaseAggregationConditionService aggregationConditionService )
64
 
    {
65
 
        this.aggregationConditionService = aggregationConditionService;
66
 
    }
67
 
 
68
 
    public void setId( Integer id )
69
 
    {
70
 
        this.id = id;
71
 
    }
72
 
 
73
 
    public String getDescription()
74
 
    {
75
 
        return description;
76
 
    }
77
 
 
78
 
    public CaseAggregationCondition getCaseAggregation()
79
 
    {
80
 
        return caseAggregation;
81
 
    }
82
 
 
83
 
    // -------------------------------------------------------------------------
84
 
    // Action implementation
85
 
    // -------------------------------------------------------------------------
86
 
 
87
 
    @Override
88
 
    public String execute()
89
 
        throws Exception
90
 
    {
91
 
        caseAggregation = aggregationConditionService.getCaseAggregationCondition( id );
92
 
 
93
 
        description = aggregationConditionService.getConditionDescription( caseAggregation.getAggregationExpression() );
94
 
        
95
 
        return SUCCESS;
96
 
    }
97
 
}