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

com.payu.common.client.error.ConflictValidationError Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
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