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

com.weavechain.core.operations.DeleteOptions Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
package com.weavechain.core.operations;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

@Getter
@AllArgsConstructor
@ToString
public class DeleteOptions {
    @Setter
    private boolean allowDistribute;

    private String correlationUuid;

    @Setter
    private ThresholdMultisigContext context;

    public static final DeleteOptions DELETE_DEFAULT = new DeleteOptions(true, null, null);

    public DeleteOptions copy() {
        return new DeleteOptions(allowDistribute, correlationUuid, context);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy