~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/validation/UpdateProgramValidationAction.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.validation;
29
 
 
30
 
import org.hisp.dhis.program.ProgramValidation;
31
 
import org.hisp.dhis.program.ProgramValidationService;
32
 
 
33
 
import com.opensymphony.xwork2.Action;
34
 
 
35
 
/**
36
 
 * @author Chau Thu Tran
37
 
 * @version $ UpdateProgramValidationAction.java Apr 28, 2011 11:24:43 AM $
38
 
 */
39
 
public class UpdateProgramValidationAction
40
 
    implements Action
41
 
{
42
 
    // -------------------------------------------------------------------------
43
 
    // Dependencies
44
 
    // -------------------------------------------------------------------------
45
 
 
46
 
    private ProgramValidationService programValidationService;
47
 
 
48
 
    // -------------------------------------------------------------------------
49
 
    // Input
50
 
    // -------------------------------------------------------------------------
51
 
 
52
 
    private Integer id;
53
 
 
54
 
    private String description;
55
 
 
56
 
    private String leftSide;
57
 
 
58
 
    private String rightSide;
59
 
 
60
 
    private Integer programId;
61
 
 
62
 
    // -------------------------------------------------------------------------
63
 
    // Setters
64
 
    // -------------------------------------------------------------------------
65
 
 
66
 
    public void setProgramValidationService( ProgramValidationService programValidationService )
67
 
    {
68
 
        this.programValidationService = programValidationService;
69
 
    }
70
 
 
71
 
    public Integer getProgramId()
72
 
    {
73
 
        return programId;
74
 
    }
75
 
 
76
 
    public void setId( Integer id )
77
 
    {
78
 
        this.id = id;
79
 
    }
80
 
 
81
 
    public void setDescription( String description )
82
 
    {
83
 
        this.description = description;
84
 
    }
85
 
 
86
 
    public void setLeftSide( String leftSide )
87
 
    {
88
 
        this.leftSide = leftSide;
89
 
    }
90
 
 
91
 
    public void setRightSide( String rightSide )
92
 
    {
93
 
        this.rightSide = rightSide;
94
 
    }
95
 
 
96
 
    // -------------------------------------------------------------------------
97
 
    // Implementation Action
98
 
    // -------------------------------------------------------------------------
99
 
 
100
 
    @Override
101
 
    public String execute()
102
 
        throws Exception
103
 
    {
104
 
        ProgramValidation validation = programValidationService.getProgramValidation( id );
105
 
 
106
 
        programId = validation.getProgram().getId();
107
 
 
108
 
        validation.setDescription( description.trim() );
109
 
        validation.setLeftSide( leftSide.trim() );
110
 
        validation.setRightSide( rightSide.trim() );
111
 
        
112
 
        programValidationService.updateProgramValidation( validation );
113
 
 
114
 
        return SUCCESS;
115
 
    }
116
 
 
117
 
}