-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#8 - set date interval/instant from temporal extent in collections de…
…scription
- Loading branch information
Showing
6 changed files
with
270 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/main/java/org/opengis/cite/wfs30/util/TemporalExtent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package org.opengis.cite.wfs30.util; | ||
|
||
import java.time.ZonedDateTime; | ||
|
||
/** | ||
* @author <a href="mailto:[email protected]">Lyn Goltz </a> | ||
*/ | ||
public class TemporalExtent { | ||
|
||
private ZonedDateTime begin; | ||
|
||
private ZonedDateTime end; | ||
|
||
public TemporalExtent( ZonedDateTime begin, ZonedDateTime end ) { | ||
this.begin = begin; | ||
this.end = end; | ||
} | ||
|
||
public ZonedDateTime getBegin() { | ||
return begin; | ||
} | ||
|
||
public ZonedDateTime getEnd() { | ||
return end; | ||
} | ||
|
||
} |
Oops, something went wrong.