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

org.cloudfoundry.multiapps.controller.persistence.query.LockOwnersQuery Maven / Gradle / Ivy

There is a newer version: 1.176.0
Show newest version
package org.cloudfoundry.multiapps.controller.persistence.query;

import org.cloudfoundry.multiapps.controller.persistence.OrderDirection;
import org.cloudfoundry.multiapps.controller.persistence.model.LockOwnerEntry;

import java.time.LocalDateTime;
import java.util.List;

public interface LockOwnersQuery extends Query {

    LockOwnersQuery id(Long id);

    LockOwnersQuery lockOwner(String lockOwner);

    LockOwnersQuery withLockOwnerAnyOf(List lockOwners);

    LockOwnersQuery olderThan(LocalDateTime timestamp);

    LockOwnersQuery orderByTimestamp(OrderDirection orderDirection);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy