From d6807c87f210d98324216d285f4f69a6814c6a02 Mon Sep 17 00:00:00 2001 From: "shutian.lzh" Date: Tue, 24 Apr 2018 12:44:23 +0800 Subject: [PATCH] Fix code style issue --- .../rocketmq/domain/RocketMQConstants.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/openmessaging/src/main/java/io/openmessaging/rocketmq/domain/RocketMQConstants.java b/openmessaging/src/main/java/io/openmessaging/rocketmq/domain/RocketMQConstants.java index 4c6568ae..2bebc8ab 100644 --- a/openmessaging/src/main/java/io/openmessaging/rocketmq/domain/RocketMQConstants.java +++ b/openmessaging/src/main/java/io/openmessaging/rocketmq/domain/RocketMQConstants.java @@ -1,7 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 io.openmessaging.rocketmq.domain; public interface RocketMQConstants { + /** + * Key of scheduled message delivery time + */ String START_DELIVER_TIME = "__STARTDELIVERTIME"; } -- GitLab