Interface MobilePageService
-
- All Superinterfaces:
CRUDService<MobilePageDTO,MobilePageData,ConfigurationVO>,Service
- All Known Subinterfaces:
MobilePageServiceLocal
public interface MobilePageService extends CRUDService<MobilePageDTO,MobilePageData,ConfigurationVO>
Service for mobile pages
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetContent(@NotNull MobilePageVO mobilePage)Returns the content of a mobile pageMobilePagesListDatagetListData(@NotNull ConfigurationVO configuration)Returns data with a list of mobile pages in a given configurationList<MobilePageVO>list(@NotNull ConfigurationVO configuration)Lists all mobile pages for the given configurationvoidsaveOrder(@NotNull List<Long> ids)Updates the order field according to the given ids sequence-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
-
-
-
Method Detail
-
getContent
String getContent(@NotNull @NotNull MobilePageVO mobilePage) throws FrameworkException
Returns the content of a mobile page- Throws:
FrameworkException
-
getListData
MobilePagesListData getListData(@NotNull @NotNull ConfigurationVO configuration) throws FrameworkException
Returns data with a list of mobile pages in a given configuration- Throws:
FrameworkException
-
list
List<MobilePageVO> list(@NotNull @NotNull ConfigurationVO configuration) throws FrameworkException
Lists all mobile pages for the given configuration- Throws:
FrameworkException
-
saveOrder
void saveOrder(@NotNull @NotNull List<Long> ids) throws FrameworkExceptionUpdates the order field according to the given ids sequence- Throws:
FrameworkException
-
-