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

io.pravega.schemaregistry.integrationtest.DerivedUser1 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 DerivedUser1 extends User {
    @Getter
    private String user1;

    public DerivedUser1(String name, Address address, int age, String user1) {
        super(name, address, age);
        this.user1 = user1;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy