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

com.afrozaar.wordpress.wpapi.v2.api.Terms 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.TermNotFoundException;
import com.afrozaar.wordpress.wpapi.v2.model.Term;

import java.util.List;

public interface Terms {

    List getTerms(String taxonomy);

    Term getTerm(String taxonomy, Long id) throws TermNotFoundException;

    Term updateTerm(String taxonomy, Term term);

    Term deleteTerm(String taxonomy, Term term) throws TermNotFoundException;

    List deleteTerms(String taxonomy, Term... terms);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy