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

com.microsoft.azure.kusto.data.auth.endpoints.MatchResult Maven / Gradle / Ivy

There is a newer version: 5.2.0
Show newest version
package com.microsoft.azure.kusto.data.auth.endpoints;

public class MatchResult {
    Boolean isMatch;
    MatchRule matcher;

    public MatchResult(Boolean isMatch, MatchRule matcher) {
        this.isMatch = isMatch;
        this.matcher = matcher;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy