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

io.github.thunderz99.cosmos.dto.PartialUpdateOption Maven / Gradle / Ivy

There is a newer version: 0.7.11
Show newest version
package io.github.thunderz99.cosmos.dto;

/**
 * Options when using partial update methods. e.g. whether check etags to implement a
 */
public class PartialUpdateOption {

    public boolean checkETag = false;

    public static PartialUpdateOption checkETag(boolean checkETag){
        var option = new PartialUpdateOption();
        option.checkETag = checkETag;
        return option;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy