io.pravega.schemaregistry.integrationtest.DerivedUser2 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.Data;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@EqualsAndHashCode(callSuper = true)
public class DerivedUser2 extends User {
@Getter
private String user2;
public DerivedUser2(String name, Address address, int age, String user2) {
super(name, address, age);
this.user2 = user2;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy