![JAR search and dependency download from the Maven repository](/logo.png)
io.pravega.schemaregistry.integrationtest.User Maven / Gradle / Ivy
/**
* Copyright (c) Dell Inc., or its subsidiaries. All Rights Reserved.
*
* 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
*/
package io.pravega.schemaregistry.integrationtest;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.Getter;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
@Getter
private String name;
@Getter
private Address address;
@Getter
private int age;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy