1 Star 1 Fork 1

openwms / org.openwms.common.comm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
TimesyncRequest.java 2.61 KB
一键复制 编辑 原始数据 按行查看 历史
Heiko Scherrer 提交于 2020-03-29 18:50 . Updated file headers
/*
* Copyright 2005-2020 the original author or authors.
*
* 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.openwms.common.comm.osip.synq;
import org.openwms.common.comm.osip.Payload;
import java.io.Serializable;
import java.util.Date;
import java.util.Objects;
import java.util.StringJoiner;
/**
* A TimesyncRequest.
*
* @author Heiko Scherrer
*/
public class TimesyncRequest extends Payload implements Serializable {
/** Message identifier {@value} . */
public static final String IDENTIFIER = "SYNQ";
private Date senderTimer;
/*~------------ Accessors ------------*/
public void setSenderTimer(Date senderTimer) {
this.senderTimer = senderTimer;
}
public Date getSenderTimer() {
return senderTimer;
}
/*~------------ Overrides ------------*/
/**
* Subclasses have to return an unique, case-sensitive message identifier.
*
* @return The message TYPE field (see OSIP specification)
*/
@Override
public String getMessageIdentifier() {
return IDENTIFIER;
}
/**
* Does this type of message needs to be replied to?
*
* @return {@literal true} no reply needed, otherwise {@literal false}
*/
@Override
public boolean isWithoutReply() {
return false;
}
/**
* {@inheritDoc}
*
* Use all fields.
*/
@Override
public boolean equals(Object o) {
if (this == o)
return true;
if (o == null || getClass() != o.getClass())
return false;
if (!super.equals(o))
return false;
TimesyncRequest that = (TimesyncRequest) o;
return Objects.equals(senderTimer, that.senderTimer);
}
/**
* {@inheritDoc}
*
* Use all fields.
*/
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), senderTimer);
}
/**
* {@inheritDoc}
*
* Use all fields.
*/
@Override
public String toString() {
return new StringJoiner(", ", TimesyncRequest.class.getSimpleName() + "[", "]").add("senderTimer=" + senderTimer).toString();
}
}
1
https://gitee.com/comk1/org.openwms.common.comm.git
git@gitee.com:comk1/org.openwms.common.comm.git
comk1
org.openwms.common.comm
org.openwms.common.comm
master

搜索帮助