View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package javax.faces.convert;
20  
21  import javax.faces.component.UIComponent;
22  import javax.faces.context.FacesContext;
23  
24  import org.apache.myfaces.buildtools.maven2.plugin.builder.annotation.JSFConverter;
25  
26  import java.math.BigInteger;
27  
28  /**
29   * see Javadoc of <a href="http://java.sun.com/javaee/javaserverfaces/1.2/docs/api/index.html">JSF Specification</a>
30   */
31  @JSFConverter
32  public class BigIntegerConverter
33          implements Converter
34  {
35      // FIELDS
36      public static final String CONVERTER_ID = "javax.faces.BigInteger";
37      public static final String STRING_ID = "javax.faces.converter.STRING";
38      public static final String BIGINTEGER_ID = "javax.faces.converter.BigIntegerConverter.BIGINTEGER";
39  
40      // CONSTRUCTORS
41      public BigIntegerConverter()
42      {
43      }
44  
45      // METHODS
46      public Object getAsObject(FacesContext facesContext, UIComponent uiComponent, String value)
47      {
48          if (facesContext == null)
49          {
50              throw new NullPointerException("facesContext");
51          }
52          if (uiComponent == null)
53          {
54              throw new NullPointerException("uiComponent");
55          }
56  
57          if (value != null)
58          {
59              value = value.trim();
60              if (value.length() > 0)
61              {
62                  try
63                  {
64                      return new BigInteger(value.trim());
65                  }
66                  catch (NumberFormatException e)
67                  {
68                      throw new ConverterException(_MessageUtils.getErrorMessage(facesContext,
69                                     BIGINTEGER_ID,
70                                     new Object[]{value,"2345",_MessageUtils.getLabel(facesContext, uiComponent)}), e);
71                  }
72              }
73          }
74          return null;
75      }
76  
77      public String getAsString(FacesContext facesContext, UIComponent uiComponent, Object value)
78      {
79          if (facesContext == null)
80          {
81              throw new NullPointerException("facesContext");
82          }
83          if (uiComponent == null)
84          {
85              throw new NullPointerException("uiComponent");
86          }
87  
88          if (value == null)
89          {
90              return "";
91          }
92          if (value instanceof String)
93          {
94              return (String)value;
95          }
96          try
97          {
98              return ((BigInteger)value).toString();
99          }
100         catch (Exception e)
101         {
102             throw new ConverterException(_MessageUtils.getErrorMessage(facesContext, STRING_ID,
103                     new Object[]{value,_MessageUtils.getLabel(facesContext, uiComponent)}),e);
104         }
105     }
106 
107 }