com.payu.common.client.error.ConflictValidationError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ms-common-client Show documentation
Show all versions of ms-common-client Show documentation
Librairie commune pour les modules MS Clients
package com.payu.common.client.error;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/** Specialisation pour les erreurs global de conflit de version */
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
public class ConflictValidationError implements ApiSubError {
private Long entityId;
private int currentPersistedVersion;
private int latestKnownVersion;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy