Class IdentityProperty<T>
- java.lang.Object
-
- software.amazon.awssdk.identity.spi.IdentityProperty<T>
-
- Type Parameters:
T
- The type of the attribute.
@Immutable @ThreadSafe public final class IdentityProperty<T> extends Object
A strongly-typed property for input to anIdentityProvider
.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> IdentityProperty<T>
create(Class<?> namespace, String name)
Create a property.boolean
equals(Object o)
int
hashCode()
String
toString()
-
-
-
Method Detail
-
create
public static <T> IdentityProperty<T> create(Class<?> namespace, String name)
Create a property.- Type Parameters:
T
- the type of the property.- Parameters:
namespace
- the class *where* the property is being definedname
- the name for the property- Throws:
IllegalArgumentException
- if a property with this namespace and name already exist
-
-