All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enonic.xp.convert.ContentIdConverter Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.convert;

import com.enonic.xp.content.ContentId;

final class ContentIdConverter
    implements Converter
{
    @Override
    public Class getType()
    {
        return ContentId.class;
    }

    @Override
    public ContentId convert( final Object value )
    {
        if ( value instanceof ContentId )
        {
            return (ContentId) value;
        }

        return ContentId.from( value );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy