nyla.solutions.global.data.Createable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.global Show documentation
Show all versions of nyla.solutions.global Show documentation
Nyla Solutions Global Java API provides support for basic application
utilities (application configuration, data encryption, debugger and text
processing).
The newest version!
package nyla.solutions.global.data;
import java.io.Serializable;
import java.util.*;
/**
*
* Createable interface for items that can be created.
*
* @author Gregory Green
* @version 1.0
*/
public interface Createable extends Serializable
{
/**
*
* @return date when item was created
*/
public Date getCreateDate();
/**
* Set create date
* @param aCreateDate the create date
*/
public void setCreateDate(Date aCreateDate);
/**
* @return the create user's primary key
*/
public Object getCreateUserID();
/**
* set create user ID
* @param aCreateUserID create user ID
*/
public void setCreateUserID(Object aCreateUserID);
}