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

com.afrozaar.wordpress.wpapi.v2.api.Pages Maven / Gradle / Ivy

There is a newer version: 4.8.3
Show newest version
package com.afrozaar.wordpress.wpapi.v2.api;

import com.afrozaar.wordpress.wpapi.v2.exception.PageNotFoundException;
import com.afrozaar.wordpress.wpapi.v2.model.Page;
import com.afrozaar.wordpress.wpapi.v2.model.PostStatus;

public interface Pages {

    Page createPage(Page page, PostStatus postStatus);

    Page getPage(Long pageId) throws PageNotFoundException;

    Page getPage(Long pageId, String context);

    //List getPages();

    Page updatePage(Page page);

    Page deletePage(Page page);

    Page deletePage(Page page, boolean force);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy