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

quickstart.pojo.model.impl.PartyImpl Maven / Gradle / Ivy

The newest version!
package quickstart.pojo.model.impl;

import java.io.Serializable;
import org.plasma.sdo.core.CoreDataObject;
import java.util.Date;
import quickstart.pojo.model.Party;

/**
 * Derived from enum plasma.test.model.humanresources.Party
 * 

* Generated implementation class representing the domain model entity Party. */ public class PartyImpl extends CoreDataObject implements Serializable, Party { private static final long serialVersionUID = 1L; /** The SDO namespace URI associated with the SDO Type for this class */ public static final String NAMESPACE_URI = "http://plasma-test/humanresources"; /** * Default No-arg constructor required for serialization operations. This method * is NOT intended to be used within application source code. */ public PartyImpl() { super(); } public PartyImpl(commonj.sdo.Type type) { super(type); } /** * Returns true if the createdDate property is set. *

* Property Definition: * See {@link #getCreatedDate() getCreatedDate} or {@link #setCreatedDate(Date value) setCreatedDate(...)} for a definition of property createdDate * @return true if the createdDate property is set. */ public boolean isSetCreatedDate(){ return super.isSet(plasma.test.model.humanresources.Party.createdDate.name()); } /** * Unsets the createdDate property, the value * of the property of the object being set to the property's * default value. The property will no longer be * considered set. *

* Property Definition: * See {@link #getCreatedDate() getCreatedDate} or {@link #setCreatedDate(Date value) setCreatedDate(...)} for a definition of property createdDate */ public void unsetCreatedDate(){ super.unset(plasma.test.model.humanresources.Party.createdDate.name()); } /** * Returns the value of the createdDate property. *

* Property Definition: * Derived from field createdDate * @return the value of the createdDate property. */ public Date getCreatedDate(){ return (Date)super.get(plasma.test.model.humanresources.Party.createdDate.name()); } /** * Sets the value of the createdDate property to the given value. *

* Property Definition: * Derived from field createdDate */ public void setCreatedDate(Date value){ super.set(plasma.test.model.humanresources.Party.createdDate.name(), value); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy