Use 1L as serial version to track data format easily
This commit is contained in:
parent
cc905ee6f2
commit
625b023733
34 changed files with 45 additions and 45 deletions
|
|
@ -5,7 +5,7 @@ package org.pasteque.common.datasource;
|
||||||
*/
|
*/
|
||||||
public class AssociationInconsistencyException extends Exception
|
public class AssociationInconsistencyException extends Exception
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -979786104345156783L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getFromField()} */
|
/** {@see getFromField()} */
|
||||||
private final String fromField;
|
private final String fromField;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class APIVersionDTO implements DTOInterface, Serializable
|
public class APIVersionDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 4654741357430549138L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getLevel()} */
|
/** {@see getLevel()} */
|
||||||
private final int level;
|
private final int level;
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class CategoryDTO extends CommonDTO implements Serializable
|
public class CategoryDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 8211717550217795453L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getParent} */
|
/** {@see getParent} */
|
||||||
private final Integer parent;
|
private final Integer parent;
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ import org.pasteque.coreutil.ImmutableList;
|
||||||
*/
|
*/
|
||||||
public class CompositionDTO extends ProductDTO implements Serializable
|
public class CompositionDTO extends ProductDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -3223110713928387147L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** Always true */
|
/** Always true */
|
||||||
protected final boolean composition = true;
|
protected final boolean composition = true;
|
||||||
|
|
@ -92,7 +92,7 @@ public class CompositionDTO extends ProductDTO implements Serializable
|
||||||
*/
|
*/
|
||||||
public class CompositionGroupDTO implements Serializable
|
public class CompositionGroupDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -5237752185922817170L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getLabel()} */
|
/** {@see getLabel()} */
|
||||||
private final String label;
|
private final String label;
|
||||||
|
|
@ -144,7 +144,7 @@ public class CompositionDTO extends ProductDTO implements Serializable
|
||||||
*/
|
*/
|
||||||
public class CompositionProductDTO implements Serializable
|
public class CompositionProductDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 4024627602322411550L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getProduct()} */
|
/** {@see getProduct()} */
|
||||||
private final int product;
|
private final int product;
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class CurrencyDTO extends CommonDTO implements Serializable
|
public class CurrencyDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -6259735426241774167L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getSymbol()} */
|
/** {@see getSymbol()} */
|
||||||
private final String symbol;
|
private final String symbol;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class CustomerDTO extends CommonDTO implements Serializable
|
public class CustomerDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 2904701878615495822L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getCard()} */
|
/** {@see getCard()} */
|
||||||
private final String card;
|
private final String card;
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class DiscountProfileDTO extends CommonDTO implements Serializable
|
public class DiscountProfileDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -2505636588019239236L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getDiscountRate()}. */
|
/** See {@link getDiscountRate()}. */
|
||||||
private final double discountRate;
|
private final double discountRate;
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class FloorDTO extends CommonDTO implements Serializable
|
public class FloorDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -4474106026709243994L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getPlaces()} */
|
/** {@see getPlaces()} */
|
||||||
private final ImmutableList<PlaceDTO> places;
|
private final ImmutableList<PlaceDTO> places;
|
||||||
|
|
@ -71,7 +71,7 @@ public class FloorDTO extends CommonDTO implements Serializable
|
||||||
*/
|
*/
|
||||||
public class PlaceDTO implements Serializable
|
public class PlaceDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 8129968704161611106L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getLabel()} */
|
/** {@see getLabel()} */
|
||||||
private final String label;
|
private final String label;
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class ImageDTO implements DTOInterface, Serializable
|
public class ImageDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -7807272808383007554L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getModel()} */
|
/** {@see getModel()} */
|
||||||
private final String model;
|
private final String model;
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class OptionDTO implements DTOInterface, Serializable
|
public class OptionDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 8951727299457218490L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getName()} */
|
/** {@see getName()} */
|
||||||
private final String name;
|
private final String name;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class OrderDTO implements DTOInterface, Serializable
|
public class OrderDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -3898628758749878634L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getId()}. */
|
/** See {@link getId()}. */
|
||||||
private final String id;
|
private final String id;
|
||||||
|
|
@ -194,7 +194,7 @@ public class OrderDTO implements DTOInterface, Serializable
|
||||||
*/
|
*/
|
||||||
public class OrderLineDTO implements Serializable
|
public class OrderLineDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 8802466032089572015L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getDispOrder()}. */
|
/** See {@link getDispOrder()}. */
|
||||||
private final int dispOrder;
|
private final int dispOrder;
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ import org.pasteque.coreutil.ImmutableList;
|
||||||
*/
|
*/
|
||||||
public class PaymentModeDTO extends CommonDTO implements Serializable
|
public class PaymentModeDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 5324960228614648256L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getBackLabel()} */
|
/** {@see getBackLabel()} */
|
||||||
private final String backLabel;
|
private final String backLabel;
|
||||||
|
|
@ -139,7 +139,7 @@ public class PaymentModeDTO extends CommonDTO implements Serializable
|
||||||
*/
|
*/
|
||||||
public class PaymentModeValueDTO implements Serializable
|
public class PaymentModeValueDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 5503522521532600750L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getValue()} */
|
/** {@see getValue()} */
|
||||||
private final double value;
|
private final double value;
|
||||||
|
|
@ -195,7 +195,7 @@ public class PaymentModeDTO extends CommonDTO implements Serializable
|
||||||
*/
|
*/
|
||||||
public class PaymentModeReturnDTO implements Serializable
|
public class PaymentModeReturnDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -5076562956398887860L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getMinAmount()} */
|
/** {@see getMinAmount()} */
|
||||||
private double minAmount;
|
private double minAmount;
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class ProductDTO extends CommonDTO implements Serializable
|
public class ProductDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -6083885399091129846L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getBarcode()} */
|
/** {@see getBarcode()} */
|
||||||
protected final String barcode;
|
protected final String barcode;
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class ResourceDTO implements DTOInterface, Serializable
|
public class ResourceDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -7746795788087018857L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getModel()} */
|
/** {@see getModel()} */
|
||||||
private final String label;
|
private final String label;
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ import org.pasteque.coreutil.ImmutableList;
|
||||||
*/
|
*/
|
||||||
public class RoleDTO extends CommonDTO implements Serializable
|
public class RoleDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 1835635017595972352L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getPermissions()} */
|
/** {@see getPermissions()} */
|
||||||
private final ImmutableList<String> permissions;
|
private final ImmutableList<String> permissions;
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ import org.pasteque.coreutil.ImmutableList;
|
||||||
*/
|
*/
|
||||||
public class TariffAreaDTO extends CommonDTO implements Serializable
|
public class TariffAreaDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -2639559615366931293L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getSymbol()} */
|
/** {@see getSymbol()} */
|
||||||
private final ImmutableList<TariffAreaPriceDTO> prices;
|
private final ImmutableList<TariffAreaPriceDTO> prices;
|
||||||
|
|
@ -70,7 +70,7 @@ public class TariffAreaDTO extends CommonDTO implements Serializable
|
||||||
*/
|
*/
|
||||||
public class TariffAreaPriceDTO implements Serializable
|
public class TariffAreaPriceDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 3384262202026051762L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getProduct()}. */
|
/** See {@link getProduct()}. */
|
||||||
private int product;
|
private int product;
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class TaxDTO extends CommonDTO implements Serializable
|
public class TaxDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 8232927221600250003L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getTaxRate()}. */
|
/** See {@link getTaxRate()}. */
|
||||||
private final double taxRate;
|
private final double taxRate;
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class UserDTO extends CommonDTO implements Serializable
|
public class UserDTO extends CommonDTO implements Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 5162729826784894378L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getRole()} */
|
/** {@see getRole()} */
|
||||||
private final int role;
|
private final int role;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ import java.util.function.Consumer;
|
||||||
*/
|
*/
|
||||||
public final class ImmutableList<T> implements Iterable<T>, Serializable
|
public final class ImmutableList<T> implements Iterable<T>, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 4982637247874555568L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link get(int)} or {@link iterator()}. */
|
/** See {@link get(int)} or {@link iterator()}. */
|
||||||
private List<T> content;
|
private List<T> content;
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ package org.pasteque.coreutil;
|
||||||
*/
|
*/
|
||||||
public class ParseException extends Exception
|
public class ParseException extends Exception
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 3552338953002779225L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a generic exception with only a message.
|
* Create a generic exception with only a message.
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ import org.pasteque.coreutil.extra.ExtraObject;
|
||||||
*/
|
*/
|
||||||
public final class CashRegisterDTO implements DTOInterface, Serializable
|
public final class CashRegisterDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 1079581813013284003L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getReference()}. */
|
/** See {@link getReference()}. */
|
||||||
private String reference;
|
private String reference;
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ import org.pasteque.coreutil.extra.ExtraObject;
|
||||||
*/
|
*/
|
||||||
public final class CashSessionDTO implements DTOInterface, Serializable
|
public final class CashSessionDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 2312930086844551950L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getCashRegister()}. */
|
/** See {@link getCashRegister()}. */
|
||||||
private WeakAssociationDTO cashRegister;
|
private WeakAssociationDTO cashRegister;
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public final class FiscalTicketDTO implements DTOInterface, Serializable
|
public final class FiscalTicketDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 1622469748625149642L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getType()}. */
|
/** See {@link getType()}. */
|
||||||
private String type;
|
private String type;
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@ import org.pasteque.coreutil.extra.ExtraObject;
|
||||||
*/
|
*/
|
||||||
public final class MovementDTO implements DTOInterface, Serializable
|
public final class MovementDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 2409481140667639418L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getPaymentMode()}. */
|
/** See {@link getPaymentMode()}. */
|
||||||
private WeakAssociationDTO paymentMode;
|
private WeakAssociationDTO paymentMode;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ import org.pasteque.coreutil.extra.ExtraObject;
|
||||||
*/
|
*/
|
||||||
public final class PaymentDTO implements DTOInterface, Serializable
|
public final class PaymentDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 3195260108460565293L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getPaymentMode()}. */
|
/** See {@link getPaymentMode()}. */
|
||||||
private WeakAssociationDTO paymentMode;
|
private WeakAssociationDTO paymentMode;
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ import org.pasteque.coreutil.extra.ExtraObject;
|
||||||
*/
|
*/
|
||||||
public final class TaxAmountDTO implements DTOInterface, Serializable
|
public final class TaxAmountDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 7429827880917696693L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getTax()}. */
|
/** See {@link getTax()}. */
|
||||||
private WeakAssociationDTO tax;
|
private WeakAssociationDTO tax;
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ import org.pasteque.coreutil.extra.ExtraObject;
|
||||||
*/
|
*/
|
||||||
public final class TaxDTO implements DTOInterface, Serializable
|
public final class TaxDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 525507510660586665L;
|
private static final long serialVersionUID = 1L;
|
||||||
/** See {@link getType()}. */
|
/** See {@link getType()}. */
|
||||||
private String type;
|
private String type;
|
||||||
/** See {@link getAmount()}. */
|
/** See {@link getAmount()}. */
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ import org.pasteque.coreutil.extra.ExtraObject;
|
||||||
*/
|
*/
|
||||||
public final class TicketDTO implements DTOInterface, Serializable
|
public final class TicketDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 8831777799341373103L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getCashRegister()}. */
|
/** See {@link getCashRegister()}. */
|
||||||
private WeakAssociationDTO cashRegister;
|
private WeakAssociationDTO cashRegister;
|
||||||
|
|
@ -341,7 +341,7 @@ public final class TicketDTO implements DTOInterface, Serializable
|
||||||
*/
|
*/
|
||||||
public class TicketLineDTO implements DTOInterface, Serializable
|
public class TicketLineDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -9065013247136552814L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getDispOrder()}. */
|
/** See {@link getDispOrder()}. */
|
||||||
private final int dispOrder;
|
private final int dispOrder;
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ import org.pasteque.coreutil.datatransfer.parser.Reader;
|
||||||
*/
|
*/
|
||||||
public class WeakAssociationDTO implements DTOInterface, Serializable
|
public class WeakAssociationDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -4033459839844194734L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getReference()}. */
|
/** See {@link getReference()}. */
|
||||||
private final String reference;
|
private final String reference;
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ import org.pasteque.coreutil.extra.ExtraObject;
|
||||||
*/
|
*/
|
||||||
public final class ZTicketDTO implements DTOInterface, Serializable
|
public final class ZTicketDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -2784800199238764159L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getCashRegister()}. */
|
/** See {@link getCashRegister()}. */
|
||||||
private WeakAssociationDTO cashRegister;
|
private WeakAssociationDTO cashRegister;
|
||||||
|
|
@ -379,7 +379,7 @@ public final class ZTicketDTO implements DTOInterface, Serializable
|
||||||
*/
|
*/
|
||||||
public class ZTicketCatSalesDTO implements DTOInterface, Serializable
|
public class ZTicketCatSalesDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -6392552469204214096L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getCategory()}. */
|
/** See {@link getCategory()}. */
|
||||||
private final WeakAssociationDTO category;
|
private final WeakAssociationDTO category;
|
||||||
|
|
@ -441,7 +441,7 @@ public final class ZTicketDTO implements DTOInterface, Serializable
|
||||||
*/
|
*/
|
||||||
public class ZTicketCatTaxesDTO implements DTOInterface, Serializable
|
public class ZTicketCatTaxesDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -8934368775977813408L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getCategory()}. */
|
/** See {@link getCategory()}. */
|
||||||
private final WeakAssociationDTO category;
|
private final WeakAssociationDTO category;
|
||||||
|
|
@ -531,7 +531,7 @@ public final class ZTicketDTO implements DTOInterface, Serializable
|
||||||
*/
|
*/
|
||||||
public class ZTicketCustBalanceDTO implements DTOInterface, Serializable
|
public class ZTicketCustBalanceDTO implements DTOInterface, Serializable
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 7698608167553284402L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** See {@link getCustomer()}. */
|
/** See {@link getCustomer()}. */
|
||||||
private final WeakAssociationDTO customer;
|
private final WeakAssociationDTO customer;
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ package org.pasteque.coreutil.datatransfer.integrity;
|
||||||
*/
|
*/
|
||||||
public abstract class IntegrityException extends Exception
|
public abstract class IntegrityException extends Exception
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 6208213847306142896L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@inheritDoc} */
|
/** {@inheritDoc} */
|
||||||
public IntegrityException() {
|
public IntegrityException() {
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@ import java.util.List;
|
||||||
*/
|
*/
|
||||||
public class IntegrityExceptions extends Exception
|
public class IntegrityExceptions extends Exception
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -2603644891253059810L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getCauses()} */
|
/** {@see getCauses()} */
|
||||||
private IntegrityException[] causes;
|
private IntegrityException[] causes;
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ package org.pasteque.coreutil.datatransfer.integrity;
|
||||||
*/
|
*/
|
||||||
public class InvalidFieldException extends IntegrityException
|
public class InvalidFieldException extends IntegrityException
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = 2512125224337518801L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getConstraint()} */
|
/** {@see getConstraint()} */
|
||||||
private final IntegrityFieldConstraint constraint;
|
private final IntegrityFieldConstraint constraint;
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ package org.pasteque.coreutil.datatransfer.integrity;
|
||||||
*/
|
*/
|
||||||
public class InvalidRecordException extends IntegrityException
|
public class InvalidRecordException extends IntegrityException
|
||||||
{
|
{
|
||||||
private static final long serialVersionUID = -6234201939816973179L;
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
/** {@see getConstraint()} */
|
/** {@see getConstraint()} */
|
||||||
private final IntegrityRecordConstraint constraint;
|
private final IntegrityRecordConstraint constraint;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue