Hi again,

I'm still trying out all the features of the Spring Core and there is something I just failed to understand.

If i get it right with PropertyEditor I can do this :

<bean id="myBean" class="MyBean">
<property name="UserInfo"><value>belaran/mypassword/admin</value></property>
</bean>
With these classes :
Code:
public class UserInfo &#123;

	private String login;
	private String password;
	private String status;
...&#125;
and
Code:
public class MyBean &#123;
	public MyBean&#40;UserInfo usr&#41;&#123;...&#125;
...&#125;

Now all i have to do is write a class that will translate login/password/status into an objet,
but how i do so ? Wich interface do i have to implements... ?

<bean id="customEditorConfigurer" class="org.springframework.beans.factory.config.Cu stomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="UserInfo">
<bean class="MyBeanEditor">
<!-- what do I put there ? -->
</bean>
</entry>
</map>
</property>
</bean>