Interface WordpressCrudService<T,S extends SearchCriteria>
-
- Type Parameters:
T- model typeS-SearchCriteriaused for this model
- All Superinterfaces:
WordpressService
- All Known Subinterfaces:
WordpressServiceCategories,WordpressServiceComments,WordpressServicePages,WordpressServicePosts,WordpressServiceTags,WordpressServiceUsers
- All Known Implementing Classes:
WordpressServiceCategoriesAdapter,WordpressServiceCommentsAdapter,WordpressServicePagesAdapter,WordpressServicePostsAdapter,WordpressServiceTagsAdapter,WordpressServiceUsersAdapter
public interface WordpressCrudService<T,S extends SearchCriteria> extends WordpressService
Common interface for services performing CRUD operations
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tcreate(T entity)Tdelete(Integer entityID)DeletedModel<T>forceDelete(Integer entityID)List<T>list(S searchCriteria)Tretrieve(Integer entityID)Tretrieve(Integer entityID, Context context)Tupdate(Integer entityID, T entity)-
Methods inherited from interface org.apache.camel.component.wordpress.api.service.WordpressService
setWordpressAuthentication
-
-
-
-
Method Detail
-
forceDelete
DeletedModel<T> forceDelete(Integer entityID)
-
-