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

com.vikingbrain.nmt.responses.metadatadatabase.ObjectCategory Maven / Gradle / Ivy

Go to download

A Java HTTP client for consuming TheDavidBox Service API of Networked Media Tank devices

There is a newer version: 1.2.1
Show newest version
package com.vikingbrain.nmt.responses.metadatadatabase;

import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;

/**
 * 
 * @author vikingBrain
 */
@Root(name="category", strict=false)
public class ObjectCategory {

	@Element(name="id")
	private String id;
	
	@Element(name="name")
	private String name;	

	/**
	 * Getter of property.
	 * @return the name
	 */
	public final String getId() {
		return id;
	}
	
	/**
	 * Setter of property.
	 * @param id the id
	 */
	public final void setId(String id) {
		this.id = id;
	}

	/**
	 * Getter of property.
	 * @return the name
	 */
	public final String getName() {
		return name;
	}
	
	/**
	 * Setter of property.
	 * @param name the name
	 */
	public final void setName(String name) {
		this.name = name;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy