Class AbstractMetadataProvider.EntityDescriptorIterator
- java.lang.Object
-
- se.litsec.opensaml.saml2.metadata.provider.AbstractMetadataProvider.EntityDescriptorIterator
-
- All Implemented Interfaces:
Iterable<EntityDescriptor>
,Iterator<EntityDescriptor>
- Enclosing class:
- AbstractMetadataProvider
protected static class AbstractMetadataProvider.EntityDescriptorIterator extends Object implements Iterator<EntityDescriptor>, Iterable<EntityDescriptor>
Iterates over EntitiesDescriptor or EntityDescriptor.
-
-
Constructor Summary
Constructors Constructor Description EntityDescriptorIterator(XMLObject metadata)
EntityDescriptorIterator(XMLObject metadata, QName role)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Predicate<EntityDescriptor>
filterRole(QName role)
boolean
hasNext()
Iterator<EntityDescriptor>
iterator()
EntityDescriptor
next()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface java.util.Iterator
forEachRemaining, remove
-
-
-
-
Method Detail
-
filterRole
public static Predicate<EntityDescriptor> filterRole(QName role)
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator<EntityDescriptor>
-
next
public EntityDescriptor next()
- Specified by:
next
in interfaceIterator<EntityDescriptor>
-
iterator
@Nonnull public Iterator<EntityDescriptor> iterator()
- Specified by:
iterator
in interfaceIterable<EntityDescriptor>
-
-