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

com.harium.suneidesis.knowledge.Thing Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
package com.harium.suneidesis.knowledge;

public class Thing {

	protected String name;
	protected String id;

	public Thing(String name) {
		super();
		this.name = name;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy