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

uk.gov.ida.saml.metadata.EntitiesDescriptorNameCriterion Maven / Gradle / Ivy

There is a newer version: 3.4.6-277
Show newest version
package uk.gov.ida.saml.metadata;

import net.shibboleth.utilities.java.support.resolver.Criterion;

public class EntitiesDescriptorNameCriterion implements Criterion {
    private final String expectedName;

    public EntitiesDescriptorNameCriterion(String expectedName) {
        this.expectedName = expectedName;
    }

    public String getExpectedName() {
        return expectedName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy