com.microsoft.graph.generated.models.identitygovernance.TaskDefinition Maven / Gradle / Ivy
package com.microsoft.graph.models.identitygovernance;
import com.microsoft.graph.models.Entity;
import com.microsoft.kiota.serialization.Parsable;
import com.microsoft.kiota.serialization.ParseNode;
import com.microsoft.kiota.serialization.SerializationWriter;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public class TaskDefinition extends Entity implements Parsable {
/**
* Instantiates a new {@link TaskDefinition} and sets the default values.
*/
public TaskDefinition() {
super();
}
/**
* Creates a new instance of the appropriate class based on discriminator value
* @param parseNode The parse node to use to read the discriminator value and create the object
* @return a {@link TaskDefinition}
*/
@jakarta.annotation.Nonnull
public static TaskDefinition createFromDiscriminatorValue(@jakarta.annotation.Nonnull final ParseNode parseNode) {
Objects.requireNonNull(parseNode);
return new TaskDefinition();
}
/**
* Gets the category property value. The category property
* @return a {@link EnumSet}
*/
@jakarta.annotation.Nullable
public EnumSet getCategory() {
return this.backingStore.get("category");
}
/**
* Gets the continueOnError property value. Defines if the workflow will continue if the task has an error.
* @return a {@link Boolean}
*/
@jakarta.annotation.Nullable
public Boolean getContinueOnError() {
return this.backingStore.get("continueOnError");
}
/**
* Gets the description property value. The description of the taskDefinition.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDescription() {
return this.backingStore.get("description");
}
/**
* Gets the displayName property value. The display name of the taskDefinition.Supports $filter(eq, ne) and $orderby.
* @return a {@link String}
*/
@jakarta.annotation.Nullable
public String getDisplayName() {
return this.backingStore.get("displayName");
}
/**
* The deserialization information for the current model
* @return a {@link Map>}
*/
@jakarta.annotation.Nonnull
public Map> getFieldDeserializers() {
final HashMap> deserializerMap = new HashMap>(super.getFieldDeserializers());
deserializerMap.put("category", (n) -> { this.setCategory(n.getEnumSetValue(LifecycleTaskCategory::forValue)); });
deserializerMap.put("continueOnError", (n) -> { this.setContinueOnError(n.getBooleanValue()); });
deserializerMap.put("description", (n) -> { this.setDescription(n.getStringValue()); });
deserializerMap.put("displayName", (n) -> { this.setDisplayName(n.getStringValue()); });
deserializerMap.put("parameters", (n) -> { this.setParameters(n.getCollectionOfObjectValues(Parameter::createFromDiscriminatorValue)); });
deserializerMap.put("version", (n) -> { this.setVersion(n.getIntegerValue()); });
return deserializerMap;
}
/**
* Gets the parameters property value. The parameters that must be supplied when creating a workflow task object.Supports $filter(any).
* @return a {@link java.util.List}
*/
@jakarta.annotation.Nullable
public java.util.List getParameters() {
return this.backingStore.get("parameters");
}
/**
* Gets the version property value. The version number of the taskDefinition. New records are pushed when we add support for new parameters.Supports $filter(ge, gt, le, lt, eq, ne) and $orderby.
* @return a {@link Integer}
*/
@jakarta.annotation.Nullable
public Integer getVersion() {
return this.backingStore.get("version");
}
/**
* Serializes information the current object
* @param writer Serialization writer to use to serialize this model
*/
public void serialize(@jakarta.annotation.Nonnull final SerializationWriter writer) {
Objects.requireNonNull(writer);
super.serialize(writer);
writer.writeEnumSetValue("category", this.getCategory());
writer.writeBooleanValue("continueOnError", this.getContinueOnError());
writer.writeStringValue("description", this.getDescription());
writer.writeStringValue("displayName", this.getDisplayName());
writer.writeCollectionOfObjectValues("parameters", this.getParameters());
writer.writeIntegerValue("version", this.getVersion());
}
/**
* Sets the category property value. The category property
* @param value Value to set for the category property.
*/
public void setCategory(@jakarta.annotation.Nullable final EnumSet value) {
this.backingStore.set("category", value);
}
/**
* Sets the continueOnError property value. Defines if the workflow will continue if the task has an error.
* @param value Value to set for the continueOnError property.
*/
public void setContinueOnError(@jakarta.annotation.Nullable final Boolean value) {
this.backingStore.set("continueOnError", value);
}
/**
* Sets the description property value. The description of the taskDefinition.
* @param value Value to set for the description property.
*/
public void setDescription(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("description", value);
}
/**
* Sets the displayName property value. The display name of the taskDefinition.Supports $filter(eq, ne) and $orderby.
* @param value Value to set for the displayName property.
*/
public void setDisplayName(@jakarta.annotation.Nullable final String value) {
this.backingStore.set("displayName", value);
}
/**
* Sets the parameters property value. The parameters that must be supplied when creating a workflow task object.Supports $filter(any).
* @param value Value to set for the parameters property.
*/
public void setParameters(@jakarta.annotation.Nullable final java.util.List value) {
this.backingStore.set("parameters", value);
}
/**
* Sets the version property value. The version number of the taskDefinition. New records are pushed when we add support for new parameters.Supports $filter(ge, gt, le, lt, eq, ne) and $orderby.
* @param value Value to set for the version property.
*/
public void setVersion(@jakarta.annotation.Nullable final Integer value) {
this.backingStore.set("version", value);
}
}