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

com.afrozaar.wordpress.wpapi.v2.api.PostMetas 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.model.PostMeta;

import java.util.List;

/**
 * @author johan
 */
public interface PostMetas {

    PostMeta createMeta(Long postId, String key, String value);

    List getPostMetas(Long postId);

    PostMeta getPostMeta(Long postId, Long metaId);

    PostMeta updatePostMetaValue(Long postId, Long metaId, String value);

    PostMeta updatePostMeta(Long postId, Long metaId, String key, String value);

    boolean deletePostMeta(Long postId, Long metaId);

    boolean deletePostMeta(Long postId, Long metaId, Boolean force);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy