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

org.apereo.cas.jdbc.PartialWhereClause Maven / Gradle / Ivy

package org.apereo.cas.jdbc;

import lombok.Getter;
import lombok.Setter;
import lombok.ToString;
import java.util.ArrayList;
import java.util.List;

/**
 * This is {@link PartialWhereClause}.
 *
 * @author Misagh Moayyed
 * @since 7.1.0
 */
@ToString
@Getter
@Setter
public class PartialWhereClause {
    private StringBuilder sql = new StringBuilder();
    private List arguments = new ArrayList<>();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy