From commits-return-13380-archive-asf-public=cust-asf.ponee.io@pulsar.incubator.apache.org Mon Aug 27 18:38:08 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 0979F180718 for ; Mon, 27 Aug 2018 18:38:07 +0200 (CEST) Received: (qmail 4808 invoked by uid 500); 27 Aug 2018 16:38:07 -0000 Mailing-List: contact commits-help@pulsar.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@pulsar.incubator.apache.org Delivered-To: mailing list commits@pulsar.incubator.apache.org Received: (qmail 4782 invoked by uid 99); 27 Aug 2018 16:38:07 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 27 Aug 2018 16:38:07 +0000 From: GitBox To: commits@pulsar.apache.org Subject: [GitHub] merlimat commented on a change in pull request #2452: [Schema] Provide a generic record interface for representing a typed message Message-ID: <153538788664.19890.291368379194969.gitbox@gitbox.apache.org> Date: Mon, 27 Aug 2018 16:38:06 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit merlimat commented on a change in pull request #2452: [Schema] Provide a generic record interface for representing a typed message URL: https://github.com/apache/incubator-pulsar/pull/2452#discussion_r213035919 ########## File path: pulsar-client-schema/src/main/java/org/apache/pulsar/client/api/schema/Field.java ########## @@ -0,0 +1,37 @@ +/** + * 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 org.apache.pulsar.client.api.schema; + +import lombok.Data; +import lombok.EqualsAndHashCode; +import lombok.ToString; + +/** + * A field in a record, consisting of a field name, index, and + * {@link org.apache.pulsar.client.api.Schema} for the field value. + */ +@Data +@EqualsAndHashCode +@ToString +public class Field { + + private final String name; Review comment: If we add Javadoc on these fields, Lombok will propagate it on the getters ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services