Skip to content

Commit

Permalink
KRACOEUS-8159:updated budget contract to extend RecordedCreate
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Williams committed Dec 3, 2014
1 parent ca52ad5 commit a8fa87a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
import org.kuali.coeus.common.budget.api.rate.RateClassContract;
import org.kuali.coeus.propdev.api.budget.subaward.BudgetSubAwardsContract;
import org.kuali.coeus.sys.api.model.DocumentNumbered;
import org.kuali.coeus.sys.api.model.RecordedCreate;
import org.kuali.coeus.sys.api.model.ScaleTwoDecimal;

import java.util.Date;
import java.util.List;

public interface BudgetContract extends IdentifiableBudget, DocumentNumbered {
public interface BudgetContract extends IdentifiableBudget, DocumentNumbered, RecordedCreate {

Integer getBudgetVersionNumber();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package org.kuali.coeus.sys.api.model;

import java.util.Date;
import java.sql.Timestamp;

/**
* This interface can be used to identify a user and timestamp regarding when the object was initially created
Expand All @@ -12,7 +12,7 @@ public interface RecordedCreate {
* The date and time of when the object was last inserted
* @return the date or null if the object is new
*/
Date getCreateTimestamp();
Timestamp getCreateTimestamp();

/**
* The user who last inserted the object
Expand Down

0 comments on commit a8fa87a

Please sign in to comment.