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

nyla.solutions.global.data.Createable Maven / Gradle / Ivy

Go to download

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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy