Class InetSocketAddressEditor
- java.lang.Object
-
- java.beans.PropertyEditorSupport
-
- org.apache.mina.integration.spring.InetSocketAddressEditor
-
- All Implemented Interfaces:
java.beans.PropertyEditor
public class InetSocketAddressEditor extends java.beans.PropertyEditorSupport
Java BeanPropertyEditor
which converts Strings intoInetSocketAddress
objects. Valid values include a hostname or ip address and a port number separated by a ':'. If the hostname or ip address is omitted the wildcard address will be used. E.g.:google.com:80
,:22
,192.168.0.1:110
.Use Spring's CustomEditorConfigurer to use this property editor in a Spring configuration file. See chapter 3.14 of the Spring Reference Documentation for more info.
- See Also:
InetSocketAddress
-
-
Constructor Summary
Constructors Constructor Description InetSocketAddressEditor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
setAsText(java.lang.String text)
-