Class QualificationRequirement
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<QualificationRequirement.Builder,
QualificationRequirement>
The QualificationRequirement data structure describes a Qualification that a Worker must have before the Worker is allowed to accept a HIT. A requirement may optionally state that a Worker must have the Qualification in order to preview the HIT, or see the HIT in search results.
- See Also:
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionfinal HITAccessActions
Setting this attribute prevents Workers whose Qualifications do not meet this QualificationRequirement from taking the specified action.final String
Setting this attribute prevents Workers whose Qualifications do not meet this QualificationRequirement from taking the specified action.builder()
final Comparator
The kind of comparison to make against a Qualification's value.final String
The kind of comparison to make against a Qualification's value.final boolean
final boolean
equalsBySdkFields
(Object obj) Indicates whether some other object is "equal to" this one by SDK fields.final <T> Optional
<T> getValueForField
(String fieldName, Class<T> clazz) final int
hashCode()
final boolean
For responses, this returns true if the service returned a value for the IntegerValues property.final boolean
For responses, this returns true if the service returned a value for the LocaleValues property.The integer value to compare against the Qualification's value.The locale value to compare against the Qualification's value.final String
The ID of the Qualification type for the requirement.final Boolean
Deprecated.static Class
<? extends QualificationRequirement.Builder> Take this object and create a builder that contains all of the current property values of this object.final String
toString()
Returns a string representation of this object.Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
Method Details
-
qualificationTypeId
The ID of the Qualification type for the requirement.
- Returns:
- The ID of the Qualification type for the requirement.
-
comparator
The kind of comparison to make against a Qualification's value. You can compare a Qualification's value to an IntegerValue to see if it is LessThan, LessThanOrEqualTo, GreaterThan, GreaterThanOrEqualTo, EqualTo, or NotEqualTo the IntegerValue. You can compare it to a LocaleValue to see if it is EqualTo, or NotEqualTo the LocaleValue. You can check to see if the value is In or NotIn a set of IntegerValue or LocaleValue values. Lastly, a Qualification requirement can also test if a Qualification Exists or DoesNotExist in the user's profile, regardless of its value.
If the service returns an enum value that is not available in the current SDK version,
comparator
will returnComparator.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromcomparatorAsString()
.- Returns:
- The kind of comparison to make against a Qualification's value. You can compare a Qualification's value to an IntegerValue to see if it is LessThan, LessThanOrEqualTo, GreaterThan, GreaterThanOrEqualTo, EqualTo, or NotEqualTo the IntegerValue. You can compare it to a LocaleValue to see if it is EqualTo, or NotEqualTo the LocaleValue. You can check to see if the value is In or NotIn a set of IntegerValue or LocaleValue values. Lastly, a Qualification requirement can also test if a Qualification Exists or DoesNotExist in the user's profile, regardless of its value.
- See Also:
-
comparatorAsString
The kind of comparison to make against a Qualification's value. You can compare a Qualification's value to an IntegerValue to see if it is LessThan, LessThanOrEqualTo, GreaterThan, GreaterThanOrEqualTo, EqualTo, or NotEqualTo the IntegerValue. You can compare it to a LocaleValue to see if it is EqualTo, or NotEqualTo the LocaleValue. You can check to see if the value is In or NotIn a set of IntegerValue or LocaleValue values. Lastly, a Qualification requirement can also test if a Qualification Exists or DoesNotExist in the user's profile, regardless of its value.
If the service returns an enum value that is not available in the current SDK version,
comparator
will returnComparator.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromcomparatorAsString()
.- Returns:
- The kind of comparison to make against a Qualification's value. You can compare a Qualification's value to an IntegerValue to see if it is LessThan, LessThanOrEqualTo, GreaterThan, GreaterThanOrEqualTo, EqualTo, or NotEqualTo the IntegerValue. You can compare it to a LocaleValue to see if it is EqualTo, or NotEqualTo the LocaleValue. You can check to see if the value is In or NotIn a set of IntegerValue or LocaleValue values. Lastly, a Qualification requirement can also test if a Qualification Exists or DoesNotExist in the user's profile, regardless of its value.
- See Also:
-
hasIntegerValues
public final boolean hasIntegerValues()For responses, this returns true if the service returned a value for the IntegerValues property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()
method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified. -
integerValues
The integer value to compare against the Qualification's value. IntegerValue must not be present if Comparator is Exists or DoesNotExist. IntegerValue can only be used if the Qualification type has an integer value; it cannot be used with the Worker_Locale QualificationType ID. When performing a set comparison by using the In or the NotIn comparator, you can use up to 15 IntegerValue elements in a QualificationRequirement data structure.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasIntegerValues()
method.- Returns:
- The integer value to compare against the Qualification's value. IntegerValue must not be present if Comparator is Exists or DoesNotExist. IntegerValue can only be used if the Qualification type has an integer value; it cannot be used with the Worker_Locale QualificationType ID. When performing a set comparison by using the In or the NotIn comparator, you can use up to 15 IntegerValue elements in a QualificationRequirement data structure.
-
hasLocaleValues
public final boolean hasLocaleValues()For responses, this returns true if the service returned a value for the LocaleValues property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()
method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified. -
localeValues
The locale value to compare against the Qualification's value. The local value must be a valid ISO 3166 country code or supports ISO 3166-2 subdivisions. LocaleValue can only be used with a Worker_Locale QualificationType ID. LocaleValue can only be used with the EqualTo, NotEqualTo, In, and NotIn comparators. You must only use a single LocaleValue element when using the EqualTo or NotEqualTo comparators. When performing a set comparison by using the In or the NotIn comparator, you can use up to 30 LocaleValue elements in a QualificationRequirement data structure.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasLocaleValues()
method.- Returns:
- The locale value to compare against the Qualification's value. The local value must be a valid ISO 3166 country code or supports ISO 3166-2 subdivisions. LocaleValue can only be used with a Worker_Locale QualificationType ID. LocaleValue can only be used with the EqualTo, NotEqualTo, In, and NotIn comparators. You must only use a single LocaleValue element when using the EqualTo or NotEqualTo comparators. When performing a set comparison by using the In or the NotIn comparator, you can use up to 30 LocaleValue elements in a QualificationRequirement data structure.
-
requiredToPreview
Deprecated.DEPRECATED: Use the
ActionsGuarded
field instead. If RequiredToPreview is true, the question data for the HIT will not be shown when a Worker whose Qualifications do not meet this requirement tries to preview the HIT. That is, a Worker's Qualifications must meet all of the requirements for which RequiredToPreview is true in order to preview the HIT. If a Worker meets all of the requirements where RequiredToPreview is true (or if there are no such requirements), but does not meet all of the requirements for the HIT, the Worker will be allowed to preview the HIT's question data, but will not be allowed to accept and complete the HIT. The default is false. This should not be used in combination with theActionsGuarded
field.- Returns:
- DEPRECATED: Use the
ActionsGuarded
field instead. If RequiredToPreview is true, the question data for the HIT will not be shown when a Worker whose Qualifications do not meet this requirement tries to preview the HIT. That is, a Worker's Qualifications must meet all of the requirements for which RequiredToPreview is true in order to preview the HIT. If a Worker meets all of the requirements where RequiredToPreview is true (or if there are no such requirements), but does not meet all of the requirements for the HIT, the Worker will be allowed to preview the HIT's question data, but will not be allowed to accept and complete the HIT. The default is false. This should not be used in combination with theActionsGuarded
field.
-
actionsGuarded
Setting this attribute prevents Workers whose Qualifications do not meet this QualificationRequirement from taking the specified action. Valid arguments include "Accept" (Worker cannot accept the HIT, but can preview the HIT and see it in their search results), "PreviewAndAccept" (Worker cannot accept or preview the HIT, but can see the HIT in their search results), and "DiscoverPreviewAndAccept" (Worker cannot accept, preview, or see the HIT in their search results). It's possible for you to create a HIT with multiple QualificationRequirements (which can have different values for the ActionGuarded attribute). In this case, the Worker is only permitted to perform an action when they have met all QualificationRequirements guarding the action. The actions in the order of least restrictive to most restrictive are Discover, Preview and Accept. For example, if a Worker meets all QualificationRequirements that are set to DiscoverPreviewAndAccept, but do not meet all requirements that are set with PreviewAndAccept, then the Worker will be able to Discover, i.e. see the HIT in their search result, but will not be able to Preview or Accept the HIT. ActionsGuarded should not be used in combination with the
RequiredToPreview
field.If the service returns an enum value that is not available in the current SDK version,
actionsGuarded
will returnHITAccessActions.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromactionsGuardedAsString()
.- Returns:
- Setting this attribute prevents Workers whose Qualifications do not meet this QualificationRequirement
from taking the specified action. Valid arguments include "Accept" (Worker cannot accept the HIT, but can
preview the HIT and see it in their search results), "PreviewAndAccept" (Worker cannot accept or preview
the HIT, but can see the HIT in their search results), and "DiscoverPreviewAndAccept" (Worker cannot
accept, preview, or see the HIT in their search results). It's possible for you to create a HIT with
multiple QualificationRequirements (which can have different values for the ActionGuarded attribute). In
this case, the Worker is only permitted to perform an action when they have met all
QualificationRequirements guarding the action. The actions in the order of least restrictive to most
restrictive are Discover, Preview and Accept. For example, if a Worker meets all
QualificationRequirements that are set to DiscoverPreviewAndAccept, but do not meet all requirements that
are set with PreviewAndAccept, then the Worker will be able to Discover, i.e. see the HIT in their search
result, but will not be able to Preview or Accept the HIT. ActionsGuarded should not be used in
combination with the
RequiredToPreview
field. - See Also:
-
actionsGuardedAsString
Setting this attribute prevents Workers whose Qualifications do not meet this QualificationRequirement from taking the specified action. Valid arguments include "Accept" (Worker cannot accept the HIT, but can preview the HIT and see it in their search results), "PreviewAndAccept" (Worker cannot accept or preview the HIT, but can see the HIT in their search results), and "DiscoverPreviewAndAccept" (Worker cannot accept, preview, or see the HIT in their search results). It's possible for you to create a HIT with multiple QualificationRequirements (which can have different values for the ActionGuarded attribute). In this case, the Worker is only permitted to perform an action when they have met all QualificationRequirements guarding the action. The actions in the order of least restrictive to most restrictive are Discover, Preview and Accept. For example, if a Worker meets all QualificationRequirements that are set to DiscoverPreviewAndAccept, but do not meet all requirements that are set with PreviewAndAccept, then the Worker will be able to Discover, i.e. see the HIT in their search result, but will not be able to Preview or Accept the HIT. ActionsGuarded should not be used in combination with the
RequiredToPreview
field.If the service returns an enum value that is not available in the current SDK version,
actionsGuarded
will returnHITAccessActions.UNKNOWN_TO_SDK_VERSION
. The raw value returned by the service is available fromactionsGuardedAsString()
.- Returns:
- Setting this attribute prevents Workers whose Qualifications do not meet this QualificationRequirement
from taking the specified action. Valid arguments include "Accept" (Worker cannot accept the HIT, but can
preview the HIT and see it in their search results), "PreviewAndAccept" (Worker cannot accept or preview
the HIT, but can see the HIT in their search results), and "DiscoverPreviewAndAccept" (Worker cannot
accept, preview, or see the HIT in their search results). It's possible for you to create a HIT with
multiple QualificationRequirements (which can have different values for the ActionGuarded attribute). In
this case, the Worker is only permitted to perform an action when they have met all
QualificationRequirements guarding the action. The actions in the order of least restrictive to most
restrictive are Discover, Preview and Accept. For example, if a Worker meets all
QualificationRequirements that are set to DiscoverPreviewAndAccept, but do not meet all requirements that
are set with PreviewAndAccept, then the Worker will be able to Discover, i.e. see the HIT in their search
result, but will not be able to Preview or Accept the HIT. ActionsGuarded should not be used in
combination with the
RequiredToPreview
field. - See Also:
-
toBuilder
Description copied from interface:ToCopyableBuilder
Take this object and create a builder that contains all of the current property values of this object.- Specified by:
toBuilder
in interfaceToCopyableBuilder<QualificationRequirement.Builder,
QualificationRequirement> - Returns:
- a builder for type T
-
builder
-
serializableBuilderClass
-
hashCode
public final int hashCode() -
equals
-
equalsBySdkFields
Description copied from interface:SdkPojo
Indicates whether some other object is "equal to" this one by SDK fields. An SDK field is a modeled, non-inherited field in anSdkPojo
class, and is generated based on a service model.If an
SdkPojo
class does not have any inherited fields,equalsBySdkFields
andequals
are essentially the same.- Specified by:
equalsBySdkFields
in interfaceSdkPojo
- Parameters:
obj
- the object to be compared with- Returns:
- true if the other object equals to this object by sdk fields, false otherwise.
-
toString
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value. -
getValueForField
-
sdkFields
-