Package edu.uiuc.ncsa.security.core
Interface IdentifiableProvider<V>
- 
- All Superinterfaces:
- javax.inject.Provider<V>,- Serializable
 - All Known Implementing Classes:
- ClientProvider,- IdentifiableProviderImpl
 
 public interface IdentifiableProvider<V> extends javax.inject.Provider<V>, Serializable Interface for a class that is to create an identifier.Created by Jeff Gaynor 
 on 11/4/13 at 12:56 PM
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description Vget(boolean createNewIdentifier)Create a new Identifiable object and create a new identifier if true.
 
- 
- 
- 
Method Detail- 
getV get(boolean createNewIdentifier) Create a new Identifiable object and create a new identifier if true. The no-arg call toProvider.get()should be the same asget(true).- Parameters:
- createNewIdentifier-
- Returns:
 
 
- 
 
-