-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH-768 - Explicitly use ISO based date- and timeformatters.
Use - analogue to Jackson - explicit ISO based date- and timeformatters and not the default toString and parse methods of various temporals. Backport with tests adapted to pass in the string values as the Jackson-Setup in 3.1.x doesn’t have the JavaTimeModule ready.
- Loading branch information
1 parent
92685da
commit 5d01711
Showing
7 changed files
with
266 additions
and
10 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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/* | ||
* Copyright (c) 2002-2020 "Neo4j," | ||
* Neo4j Sweden AB [http://neo4j.com] | ||
* | ||
* This file is part of Neo4j. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.neo4j.ogm.domain.music; | ||
|
||
import java.time.LocalDate; | ||
import java.time.LocalDateTime; | ||
import java.time.OffsetDateTime; | ||
|
||
import org.neo4j.ogm.annotation.GeneratedValue; | ||
import org.neo4j.ogm.annotation.Id; | ||
import org.neo4j.ogm.annotation.NodeEntity; | ||
|
||
/** | ||
* Holder for various temporal objects that are all subject to XXXStringConverter. | ||
* | ||
* @author Michael J. Simons | ||
*/ | ||
@NodeEntity(label = "Data") | ||
public class TimeHolder { | ||
|
||
@Id | ||
@GeneratedValue | ||
private Long graphId; | ||
|
||
private OffsetDateTime someTime; | ||
|
||
private LocalDateTime someLocalDateTime; | ||
|
||
private LocalDate someLocalDate; | ||
|
||
public Long getGraphId() { | ||
return graphId; | ||
} | ||
|
||
public void setGraphId(Long graphId) { | ||
this.graphId = graphId; | ||
} | ||
|
||
public OffsetDateTime getSomeTime() { | ||
return someTime; | ||
} | ||
|
||
public void setSomeTime(OffsetDateTime someTime) { | ||
this.someTime = someTime; | ||
} | ||
|
||
public LocalDateTime getSomeLocalDateTime() { | ||
return someLocalDateTime; | ||
} | ||
|
||
public void setSomeLocalDateTime(LocalDateTime someLocalDateTime) { | ||
this.someLocalDateTime = someLocalDateTime; | ||
} | ||
|
||
public LocalDate getSomeLocalDate() { | ||
return someLocalDate; | ||
} | ||
|
||
public void setSomeLocalDate(LocalDate someLocalDate) { | ||
this.someLocalDate = someLocalDate; | ||
} | ||
} |
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