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

io.rocketbase.commons.dto.appuser.AppUserResetPassword Maven / Gradle / Ivy

The newest version!
package io.rocketbase.commons.dto.appuser;

import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;

import javax.validation.constraints.NotNull;
import java.io.Serializable;

/**
 * post body for rest-password
 */
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ToString(exclude = {"resetPassword"})
@Schema(description = "post body for rest-password")
public class AppUserResetPassword implements Serializable {

    @NotNull
    private String resetPassword;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy