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

panda.ex.wordpress.Category Maven / Gradle / Ivy

Go to download

Panda Tube is a Web Service API client for WordPress XML-RPC, Google Vision API, etc.

The newest version!
package panda.ex.wordpress;

import panda.bind.json.Jsons;

/**
 * Category object for a blog.
 */
public class Category {
	public String categoryId;

	public String parentId;

	public String categoryName;

	public String categoryDescription;

	public String description;

	public String htmlUrl;

	public String rssUrl;
	
	public String slug;

	//----------------------------------------------------
	// alias
	//
	/**
	 * @return the categoryId
	 */
	public String getCategory_id() {
		return categoryId;
	}

	/**
	 * @param categoryId the categoryId to set
	 */
	public void setCategory_id(String categoryId) {
		this.categoryId = categoryId;
	}

	/**
	 * @return the categoryName
	 */
	public String getCategory_name() {
		return categoryName;
	}

	/**
	 * @param categoryName the categoryName to set
	 */
	public void setCategory_name(String categoryName) {
		this.categoryName = categoryName;
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public String toString() {
		return Jsons.toJson(this, true);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy