Java tutorial
/* * Copyright 2015 moscac. * * 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 com.github.ibm.domino.resource; import com.fasterxml.jackson.annotation.JsonProperty; import java.time.LocalDate; import java.time.ZoneId; import java.time.ZonedDateTime; /** * * @author moscac */ public class EventTime { @JsonProperty("date") private String eDate; @JsonProperty("time") private String eTime; private boolean utc; public String geteDate() { return eDate; } public void seteDate(String eDate) { this.eDate = eDate; } public String geteTime() { return eTime; } public void seteTime(String eTime) { this.eTime = eTime; } public boolean isUtc() { return utc; } public void setUtc(boolean utc) { this.utc = utc; } public ZonedDateTime getEventDateTime() { String timeZone; if (isUtc()) { timeZone = "Z"; } else { timeZone = ""; } if (geteTime() == null) { return LocalDate.parse(geteDate()).atStartOfDay(ZoneId.systemDefault()); } else { return ZonedDateTime.parse(geteDate() + "T" + geteTime() + timeZone); } } public void setDateTime(ZonedDateTime zonedDateTime) { String s = zonedDateTime.withZoneSameInstant(ZoneId.of("GMT")).toString(); seteDate(s.substring(0, 10)); seteTime(s.substring(11, 19)); setUtc(true); } @Override public String toString() { return "EventTime{" + "eDate=" + eDate + ", eTime=" + eTime + ", utc=" + utc + '}'; } }