org.bouncycastle.cert.dane.DANEEntrySelector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Show all versions of com.liferay.saml.opensaml.integration Show documentation
Liferay SAML OpenSAML Integration
package org.bouncycastle.cert.dane;
import org.bouncycastle.util.Selector;
public class DANEEntrySelector
implements Selector
{
private final String domainName;
DANEEntrySelector(String domainName)
{
this.domainName = domainName;
}
public boolean match(Object obj)
{
DANEEntry dEntry = (DANEEntry)obj;
return dEntry.getDomainName().equals(domainName);
}
public Object clone()
{
return this;
}
public String getDomainName()
{
return domainName;
}
}