]> source.dussan.org Git - archiva.git/blob
cc083222f7c7eae77d4d9a6f63d5e404d39b7355
[archiva.git] /
1 package org.apache.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 org.apache.taglibs.standard.tag.common.core.NullAttributeException;
23 import org.apache.taglibs.standard.tag.el.core.ExpressionUtil;
24
25 import javax.servlet.jsp.JspException;
26 import javax.servlet.jsp.PageContext;
27 import javax.servlet.jsp.tagext.Tag;
28
29 /**
30  * ExpressionTool 
31  *
32  *
33  */
34 public class ExpressionTool
35 {
36     private PageContext pageContext;
37
38     private Tag tag;
39
40     private String tagName;
41
42     public ExpressionTool( PageContext pageContext, Tag tag, String tagName )
43     {
44         this.pageContext = pageContext;
45         this.tag = tag;
46         this.tagName = tagName;
47     }
48
49     public boolean optionalBoolean( String propertyName, String expression, boolean defaultValue )
50         throws JspException
51     {
52         try
53         {
54             Boolean ret = (Boolean) ExpressionUtil.evalNotNull( this.tagName, propertyName, expression, Boolean.class,
55                                                                 this.tag, this.pageContext );
56
57             if ( ret == null )
58             {
59                 return defaultValue;
60             }
61
62             return ret.booleanValue();
63         }
64         catch ( NullAttributeException e )
65         {
66             return defaultValue;
67         }
68     }
69
70     public String optionalString( String propertyName, String expression, String defaultValue )
71         throws JspException
72     {
73         try
74         {
75             String ret = (String) ExpressionUtil.evalNotNull( this.tagName, propertyName, expression, String.class,
76                                                               this.tag, this.pageContext );
77
78             if ( ret == null )
79             {
80                 return defaultValue;
81             }
82
83             return ret;
84         }
85         catch ( NullAttributeException e )
86         {
87             return defaultValue;
88         }
89     }
90
91     public String requiredString( String propertyName, String expression )
92         throws JspException
93     {
94         try
95         {
96             String ret = (String) ExpressionUtil.evalNotNull( this.tagName, propertyName, expression, String.class,
97                                                               this.tag, this.pageContext );
98             return ret;
99         }
100         catch ( NullAttributeException e )
101         {
102             String emsg = "Required " + this.tagName + " property [" + propertyName + "] is null!";
103
104             log( emsg, e );
105             throw new JspException( emsg );
106         }
107     }
108
109     private void log( String msg, Throwable t )
110     {
111         pageContext.getServletContext().log( msg, t );
112     }
113 }