com.viaoa.pojo.PojoRegularProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oa-core Show documentation
Show all versions of oa-core Show documentation
Object Automation library
The newest version!
package com.viaoa.pojo;
import com.fasterxml.jackson.annotation.JsonIgnore;
public class PojoRegularProperty implements java.io.Serializable {
private static final long serialVersionUID = 1L;
// References to other objects
// Pojo
protected volatile Pojo pojo;
// PojoProperty
protected volatile PojoProperty pojoProperty;
public PojoRegularProperty() {
}
@JsonIgnore
public Pojo getPojo() {
return pojo;
}
public void setPojo(Pojo newValue) {
this.pojo = newValue;
}
public PojoProperty getPojoProperty() {
return pojoProperty;
}
public void setPojoProperty(PojoProperty newValue) {
this.pojoProperty = newValue;
}
@Override
public String toString() {
return "PojoRegularProperty [" +
"]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy