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

org.smyld.db.schema.SchemaObject Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package org.smyld.db.schema;

import org.smyld.SMYLDObject;

public class SchemaObject extends SMYLDObject implements SchemaConstants {
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	String name;
	String schemaType;

	public SchemaObject() {
	}

	public String getName() {
		return name;
	}

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

	public String getSchemaType() {
		return schemaType;
	}

	public void setSchemaType(String schemaType) {
		this.schemaType = schemaType;
	}

	public String printSchemaData() {
		return schemaType + " " + name;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy