]> git.mxchange.org Git - jcontacts-business-core.git/blobdiff - src/org/mxchange/jcontactsbusiness/jobposition/JobPosition.java
updated own name and resources
[jcontacts-business-core.git] / src / org / mxchange / jcontactsbusiness / jobposition / JobPosition.java
index e1ca67fd6fb6a74a0d8e3d9aaa0d95efdd26800b..3b3c2f55981ff8dedf7e15beb18aa98a9ae84c6d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2016 Roland Haeder
+ * Copyright (C) 2016 Roland Häder
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@ import java.util.Calendar;
 /**
  * A POJI for job positions
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 public interface JobPosition extends Serializable {
 
@@ -68,6 +68,20 @@ public interface JobPosition extends Serializable {
         */
        void setJobPositionCreated (final Calendar jobPositionCreated);
 
+       /**
+        * Getter for timestamp when this entry has been updated
+        * <p>
+        * @return Timestamp when this entry has been updated
+        */
+       Calendar getJobPositionUpdated ();
+
+       /**
+        * Setter for timestamp when this entry has been updated
+        * <p>
+        * @param jobPositionUpdated Timestamp when this entry has been updated
+        */
+       void setJobPositionUpdated (final Calendar jobPositionUpdated);
+
        @Override
        boolean equals (final Object object);