com.afrozaar.wordpress.wpapi.v2.api.PostMetas Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wp-api-v2-client-java Show documentation
Show all versions of wp-api-v2-client-java Show documentation
A Java client implementation to the WordPress WP-API v2 plugin.
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