~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-validationrule/src/main/java/org/hisp/dhis/validationrule/action/GetExpressionAction.java

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.hisp.dhis.validationrule.action;
 
2
 
 
3
/*
 
4
 * Copyright (c) 2004-2007, University of Oslo
 
5
 * All rights reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions are met:
 
9
 * * Redistributions of source code must retain the above copyright notice, this
 
10
 *   list of conditions and the following disclaimer.
 
11
 * * Redistributions in binary form must reproduce the above copyright notice,
 
12
 *   this list of conditions and the following disclaimer in the documentation
 
13
 *   and/or other materials provided with the distribution.
 
14
 * * Neither the name of the HISP project nor the names of its contributors may
 
15
 *   be used to endorse or promote products derived from this software without
 
16
 *   specific prior written permission.
 
17
 *
 
18
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 
19
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
20
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
21
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 
22
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 
23
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 
24
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 
25
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 
27
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
28
 */
 
29
 
 
30
import java.util.ArrayList;
 
31
import java.util.Collections;
 
32
import java.util.Comparator;
 
33
import java.util.List;
 
34
 
 
35
import org.hisp.dhis.dataelement.DataElement;
 
36
import org.hisp.dhis.dataelement.DataElementGroup;
 
37
import org.hisp.dhis.dataelement.DataElementService;
 
38
import org.hisp.dhis.dataelement.comparator.DataElementGroupNameComparator;
 
39
import org.hisp.dhis.options.displayproperty.DisplayPropertyHandler;
 
40
 
 
41
import com.opensymphony.xwork.ActionSupport;
 
42
 
 
43
/**
 
44
 * @author Margrethe Store
 
45
 * @author Lars Helge Overland
 
46
 * @version $Id: GetExpressionAction.java 6256 2008-11-10 17:10:30Z larshelg $
 
47
 */
 
48
public class GetExpressionAction
 
49
    extends ActionSupport
 
50
{
 
51
    // -------------------------------------------------------------------------
 
52
    // Constants
 
53
    // -------------------------------------------------------------------------
 
54
 
 
55
    private static final int ALL = 0;
 
56
 
 
57
    public int getALL()
 
58
    {
 
59
        return ALL;
 
60
    }
 
61
    
 
62
    // -------------------------------------------------------------------------
 
63
    // Dependencies
 
64
    // -------------------------------------------------------------------------  
 
65
    
 
66
    private DataElementService dataElementService;
 
67
    
 
68
    public void setDataElementService( DataElementService dataElementService )
 
69
    {
 
70
        this.dataElementService = dataElementService;
 
71
    }
 
72
    
 
73
    // -------------------------------------------------------------------------
 
74
    // Comparator
 
75
    // -------------------------------------------------------------------------
 
76
 
 
77
    private Comparator<DataElement> dataElementComparator;
 
78
 
 
79
    public void setDataElementComparator( Comparator<DataElement> dataElementComparator )
 
80
    {
 
81
        this.dataElementComparator = dataElementComparator;
 
82
    }
 
83
 
 
84
    // -------------------------------------------------------------------------
 
85
    // DisplayPropertyHandler
 
86
    // -------------------------------------------------------------------------
 
87
 
 
88
    private DisplayPropertyHandler displayPropertyHandler;
 
89
 
 
90
    public void setDisplayPropertyHandler( DisplayPropertyHandler displayPropertyHandler )
 
91
    {
 
92
        this.displayPropertyHandler = displayPropertyHandler;
 
93
    }
 
94
    
 
95
    // -------------------------------------------------------------------------
 
96
    // Input/output
 
97
    // -------------------------------------------------------------------------
 
98
    
 
99
    private String side;
 
100
 
 
101
    public String getSide()
 
102
    {
 
103
        return side;
 
104
    }
 
105
 
 
106
    public void setSide( String side )
 
107
    {
 
108
        this.side = side;
 
109
    }
 
110
    
 
111
    private String description;
 
112
 
 
113
    public String getDescription()
 
114
    {
 
115
        return description;
 
116
    }
 
117
 
 
118
    public void setDescription( String description )
 
119
    {
 
120
        this.description = description;
 
121
    }
 
122
    
 
123
    private String expression;
 
124
 
 
125
    public String getExpression()
 
126
    {
 
127
        return expression;
 
128
    }
 
129
 
 
130
    public void setExpression( String expression )
 
131
    {
 
132
        this.expression = expression;
 
133
    }
 
134
    
 
135
    private String textualExpression;
 
136
 
 
137
    public String getTextualExpression()
 
138
    {
 
139
        return textualExpression;
 
140
    }
 
141
 
 
142
    public void setTextualExpression( String textualExpression )
 
143
    {
 
144
        this.textualExpression = textualExpression;
 
145
    }
 
146
 
 
147
    private List<DataElement> dataElements;
 
148
    
 
149
    public List<DataElement> getDataElements()
 
150
    {
 
151
        return dataElements;
 
152
    }
 
153
 
 
154
    private List<DataElementGroup> dataElementGroups;
 
155
    
 
156
    public List<DataElementGroup> getDataElementGroups()
 
157
    {
 
158
        return dataElementGroups;
 
159
    }
 
160
    
 
161
    // -------------------------------------------------------------------------
 
162
    // Action implementation
 
163
    // -------------------------------------------------------------------------  
 
164
    
 
165
    public String execute() throws Exception
 
166
    {
 
167
        dataElements = new ArrayList<DataElement>( dataElementService.getAllDataElements() );
 
168
        
 
169
        Collections.sort( dataElements, dataElementComparator );
 
170
 
 
171
        displayPropertyHandler.handle( dataElements );
 
172
        
 
173
        dataElementGroups = new ArrayList<DataElementGroup>( dataElementService.getAllDataElementGroups() );
 
174
 
 
175
        Collections.sort( dataElementGroups, new DataElementGroupNameComparator() );
 
176
        
 
177
        return SUCCESS;
 
178
    }
 
179
}