com.enonic.xp.schema.xdata.XDataService Maven / Gradle / Ivy
The newest version!
package com.enonic.xp.schema.xdata;
import com.enonic.xp.annotation.PublicApi;
import com.enonic.xp.app.ApplicationKey;
import com.enonic.xp.schema.content.ContentType;
@PublicApi
public interface XDataService
{
XData getByName( XDataName name );
XDatas getByNames( XDataNames names );
XDatas getAll();
XDatas getByApplication( ApplicationKey applicationKey );
XDatas getFromContentType( ContentType contentType );
}