All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.leadware.kafka.embedded.model.JSonMessage Maven / Gradle / Ivy

The newest version!
package net.leadware.kafka.embedded.model;

/*-
 * #%L
 * Apache Kafka Embedded Server
 * $Id:$
 * $HeadURL:$
 * %%
 * Copyright (C) 2013 - 2019 Leadware
 * %%
 * 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.
 * #L%
 */

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;

import io.swagger.v3.oas.annotations.media.Schema;
import io.swagger.v3.oas.annotations.media.Schema.AccessMode;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
import net.leadware.bean.validation.ext.annotations.json.FormatType;
import net.leadware.bean.validation.ext.annotations.json.StringFormatValidator;

/**
 * Classe représentant un message à envoyer via KAFKA
 * @author Jean-Jacques ETUNE NGI (Java EE Technical Lead / Enterprise Architect)
 * @since 3 avr. 2019
 */
@Schema(description = "Message d'envoie sur le simulateur KAFKA")
@NoArgsConstructor
@AllArgsConstructor
@Getter
@Setter
@ToString
public class JSonMessage {
	
	/**
	 * Topic d'envoi
	 */
	@Schema(accessMode = AccessMode.READ_WRITE, name = "topicName", required = true, description = "Nom du topic")
	@JsonProperty(required = true, value = "topicName")
	@JsonPropertyDescription("Nom du topic KAFKA")
	private String topicName;
	
	/**
	 * Cle du message
	 */
	@Schema(accessMode = AccessMode.READ_WRITE, name = "messageKey", required = true, description = "Clé du message à envoyer")
	@JsonProperty(required = true, value = "messageKey")
	@JsonPropertyDescription("Clé du message")
	private String messageKey;
	
	/**
	 * Corps du message
	 */
	@StringFormatValidator(format = FormatType.JSON)
	@Schema(accessMode = AccessMode.READ_WRITE, name = "messageBody", required = true, description = "Contenu du message à envoyer")
	@JsonProperty(required = true, value = "messageBody")
	@JsonPropertyDescription("Contenu du message")
	private String messageBody;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy