~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/AddValidationRuleAction.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 org.hisp.dhis.expression.Expression;
 
31
import org.hisp.dhis.expression.ExpressionService;
 
32
import org.hisp.dhis.validation.ValidationRule;
 
33
import org.hisp.dhis.validation.ValidationRuleService;
 
34
 
 
35
import com.opensymphony.xwork.ActionSupport;
 
36
 
 
37
/**
 
38
 * Adds a new validation rule to the database.
 
39
 * 
 
40
 * @author Margrethe Store
 
41
 * @author Lars Helge Overland
 
42
 * @version $Id: AddValidationRuleAction.java 3868 2007-11-08 15:11:12Z larshelg $
 
43
 */
 
44
public class AddValidationRuleAction
 
45
    extends ActionSupport
 
46
{
 
47
    // -------------------------------------------------------------------------
 
48
    // Dependencies
 
49
    // -------------------------------------------------------------------------
 
50
 
 
51
    private ValidationRuleService validationRuleService;
 
52
 
 
53
    public void setValidationRuleService( ValidationRuleService validationRuleService )
 
54
    {
 
55
        this.validationRuleService = validationRuleService;
 
56
    }
 
57
    
 
58
    private ExpressionService expressionService;
 
59
    
 
60
    public void setExpressionService( ExpressionService expressionService )
 
61
    {
 
62
        this.expressionService = expressionService;
 
63
    }
 
64
    
 
65
    // -------------------------------------------------------------------------
 
66
    // Input
 
67
    // -------------------------------------------------------------------------
 
68
    
 
69
    private String name;
 
70
 
 
71
    public void setName( String name )
 
72
    {
 
73
        this.name = name;
 
74
    }
 
75
 
 
76
    private String description;
 
77
 
 
78
    public void setDescription( String description )
 
79
    {
 
80
        this.description = description;
 
81
    }
 
82
 
 
83
    private String operator;
 
84
 
 
85
    public void setOperator( String operator )
 
86
    {
 
87
        this.operator = operator;
 
88
    }
 
89
 
 
90
    private String leftSideExpression;
 
91
 
 
92
    public void setLeftSideExpression( String leftSideExpression )
 
93
    {
 
94
        this.leftSideExpression = leftSideExpression;
 
95
    }
 
96
 
 
97
    private String leftSideDescription;
 
98
 
 
99
    public void setLeftSideDescription( String leftSideDescription )
 
100
    {
 
101
        this.leftSideDescription = leftSideDescription;
 
102
    }
 
103
 
 
104
    private String rightSideExpression;
 
105
 
 
106
    public void setRightSideExpression( String rightSideExpression )
 
107
    {
 
108
        this.rightSideExpression = rightSideExpression;
 
109
    }
 
110
    
 
111
    private String rightSideDescription;
 
112
 
 
113
    public void setRightSideDescription( String rightSideDescription )
 
114
    {
 
115
        this.rightSideDescription = rightSideDescription;
 
116
    }
 
117
 
 
118
    // -------------------------------------------------------------------------
 
119
    // Action implementation
 
120
    // -------------------------------------------------------------------------
 
121
    
 
122
    public String execute()
 
123
    {
 
124
        Expression leftSide = new Expression();
 
125
        
 
126
        leftSide.setExpression( leftSideExpression );
 
127
        leftSide.setDescription( leftSideDescription );
 
128
        leftSide.setDataElementsInExpression( expressionService.getDataElementsInExpression( leftSideExpression ) );
 
129
        
 
130
        expressionService.addExpression( leftSide );
 
131
        
 
132
        Expression rightSide = new Expression();
 
133
        
 
134
        rightSide.setExpression( rightSideExpression );
 
135
        rightSide.setDescription( rightSideDescription );
 
136
        rightSide.setDataElementsInExpression( expressionService.getDataElementsInExpression( rightSideExpression ) );
 
137
        
 
138
        ValidationRule validationRule = new ValidationRule();
 
139
        
 
140
        expressionService.addExpression( rightSide );
 
141
        
 
142
        validationRule.setName( name );
 
143
        validationRule.setDescription( description );
 
144
        validationRule.setType( ValidationRule.TYPE_ABSOLUTE );
 
145
        validationRule.setOperator( operator );
 
146
        validationRule.setLeftSide( leftSide );
 
147
        validationRule.setRightSide( rightSide );
 
148
        
 
149
        validationRuleService.addValidationRule( validationRule );
 
150
        
 
151
        return SUCCESS;
 
152
    }
 
153
}