InetAddressConverter.java

  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 org.apache.commons.beanutils2.converters;

  20. import java.net.InetAddress;
  21. import java.net.UnknownHostException;

  22. /**
  23.  * {@link org.apache.commons.beanutils2.Converter} implementation that handles conversion to and from {@link InetAddress}.
  24.  *
  25.  * @since 2.0.0
  26.  * @see <a href="https://en.wikipedia.org/wiki/Inet_address">IP Address on Wikipedia</a>
  27.  */
  28. public class InetAddressConverter extends AbstractConverter<InetAddress> {

  29.     /**
  30.      * Construct a <strong>{@link InetAddress}</strong> <em>Converter</em> that throws a {@code ConversionException} if an error occurs.
  31.      */
  32.     public InetAddressConverter() {
  33.     }

  34.     /**
  35.      * Constructs a {@link org.apache.commons.beanutils2.Converter} that will return the specified default value if a conversion error occurs.
  36.      *
  37.      * @param defaultValue The default value to be returned if the value to be converted is missing or an error occurs converting the value.
  38.      */
  39.     public InetAddressConverter(final InetAddress defaultValue) {
  40.         super(defaultValue);
  41.     }

  42.     /**
  43.      * Converts the specified input object into an output object of the specified type.
  44.      *
  45.      * @param type  Data type to which this value should be converted.
  46.      * @param value The String property value to convert.
  47.      * @return An {@link InetAddress} which represents the configuration property value.
  48.      * @throws NullPointerException     If the value is null.
  49.      * @throws IllegalArgumentException If a host name was specified and the IP address couldn't be obtained.
  50.      */
  51.     @Override
  52.     protected <T> T convertToType(final Class<T> type, final Object value) throws Throwable {
  53.         if (InetAddress.class.isAssignableFrom(type)) {
  54.             final String stringValue = toString(value);

  55.             try {
  56.                 return type.cast(InetAddress.getByName(stringValue));
  57.             } catch (final UnknownHostException ex) {
  58.                 throw new IllegalArgumentException("Unable to get IP address of the named host.", ex);
  59.             }
  60.         }

  61.         throw conversionException(type, value);
  62.     }

  63.     /**
  64.      * Gets the default type this {@code Converter} handles.
  65.      *
  66.      * @return The default type this {@code Converter} handles.
  67.      * @since 2.0.0
  68.      */
  69.     @Override
  70.     protected Class<InetAddress> getDefaultType() {
  71.         return InetAddress.class;
  72.     }
  73. }