Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AKTIN
dwh-import
Commits
980797bf
Commit
980797bf
authored
Nov 17, 2017
by
R.W.Majeed
Browse files
allow timestamp info
parent
85e82b67
Changes
1
Hide whitespace changes
Inline
Side-by-side
cda-import/src/main/java/org/aktin/cda/etl/Descriptor.java
View file @
980797bf
...
...
@@ -6,6 +6,8 @@ import org.aktin.cda.CDASummary;
public
class
Descriptor
implements
CDASummary
{
private
String
docId
;
Date
lastModified
;
Date
created
;
public
Descriptor
(
String
docId
){
this
.
docId
=
docId
;
...
...
@@ -17,14 +19,12 @@ public class Descriptor implements CDASummary {
@Override
public
Date
getLastModified
()
{
// TODO Auto-generated method stub
return
null
;
return
lastModified
;
}
@Override
public
Date
getCreated
()
{
// TODO Auto-generated method stub
return
null
;
return
created
;
}
@Override
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment