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

step.core.entities.SimpleBean Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package step.core.entities;

import step.core.accessors.AbstractOrganizableObject;

/**
 * A simple bean that doesn't extend {@link AbstractOrganizableObject}
 */
public class SimpleBean {

    private String id;
    private String stringProperty;

    public SimpleBean() {
        super();
    }

	public SimpleBean(String stringProperty) {
		this.stringProperty = stringProperty;
	}

	public String getId() {
		return id;
	}

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

	public String getStringProperty() {
		return stringProperty;
	}

	public void setStringProperty(String stringProperty) {
		this.stringProperty = stringProperty;
	}
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy