com.enonic.xp.convert.ContentPathConverter Maven / Gradle / Ivy
The newest version!
package com.enonic.xp.convert;
import com.enonic.xp.content.ContentPath;
final class ContentPathConverter
implements Converter
{
@Override
public Class getType()
{
return ContentPath.class;
}
@Override
public ContentPath convert( final Object value )
{
if ( value instanceof ContentPath )
{
return (ContentPath) value;
}
return ContentPath.from( value.toString() );
}
}