]> source.dussan.org Git - archiva.git/blob
8681fa6ba8900593579a55def98287d1bd140633
[archiva.git] /
1 package org.apache.maven.archiva.web.tags;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  You may obtain a copy of the License at
11  *
12  *  http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import javax.servlet.http.HttpServletRequest;
23 import javax.servlet.http.HttpServletResponse;
24 import javax.servlet.jsp.JspException;
25
26 import org.apache.struts2.components.Component;
27 import org.apache.struts2.views.jsp.ComponentTagSupport;
28
29 import com.opensymphony.xwork2.util.ValueStack;
30
31 /**
32  * DownloadArtifactTag 
33  *
34  * @version $Id$
35  */
36 public class DownloadArtifactTag
37     extends ComponentTagSupport
38 {
39     private String groupId_; // stores EL-based groupId property
40
41     private String groupId; // stores the evaluated groupId object.
42
43     private String artifactId_; // stores EL-based artifactId property
44
45     private String artifactId; // stores the evaluated artifactId object.
46
47     private String version_; // stores EL-based version property
48
49     private String version; // stores the evaluated version object.
50
51     private String mini_; // stores EL-based mini property
52
53     private boolean mini; // stores the evaluated mini object.
54
55     @Override
56     public Component getBean(ValueStack valueStack, HttpServletRequest request, HttpServletResponse response) {
57         return new DownloadArtifact(valueStack, pageContext);
58     }
59
60     @Override
61     public int doEndTag()
62         throws JspException
63     {
64         evaluateExpressions();
65
66         DownloadArtifact download = (DownloadArtifact)component;
67         download.setGroupId( groupId );
68         download.setArtifactId( artifactId );
69         download.setVersion( version );
70         download.setMini( mini );
71
72         return super.doEndTag();
73     }
74
75     private void evaluateExpressions()
76         throws JspException
77     {
78         ExpressionTool exprTool = new ExpressionTool( pageContext, this, "download" );
79
80         // Handle required properties.
81         groupId = exprTool.requiredString( "groupId", groupId_ );
82         artifactId = exprTool.requiredString( "artifactId", artifactId_ );
83         version = exprTool.requiredString( "version", version_ );
84
85         // Handle optional properties
86         mini = exprTool.optionalBoolean( "mini", mini_, false );
87     }
88
89     public void setArtifactId( String artifactId )
90     {
91         this.artifactId_ = artifactId;
92     }
93
94     public void setGroupId( String groupId )
95     {
96         this.groupId_ = groupId;
97     }
98
99     public void setVersion( String version )
100     {
101         this.version_ = version;
102     }
103 }