
com.morpheusdata.model.TaskSet Maven / Gradle / Ivy
/*
* Copyright 2024 Morpheus Data, LLC.
*
* Licensed under the PLUGIN CORE SOURCE LICENSE (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://raw.githubusercontent.com/gomorpheus/morpheus-plugin-core/v1.0.x/LICENSE
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.morpheusdata.model;
import java.util.Collection;
import java.util.Date;
import java.util.List;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.morpheusdata.model.serializers.ModelAsIdOnlySerializer;
import com.morpheusdata.model.serializers.ModelCollectionAsIdsOnlySerializer;
import com.morpheusdata.model.serializers.ModelCollectionIdCodeNameSerializer;
public class TaskSet extends MorpheusModel {
@JsonSerialize(using = ModelAsIdOnlySerializer.class)
protected Account account;
protected String taskSetType;
protected String phase;
protected String name;
protected String description;
protected String code;
protected String category;
protected String refType;
protected Long refId;
protected String platform;
protected String visibility;
protected Date dateCreated;
protected Date lastUpdated;
protected Boolean allowCustomConfig;
protected Integer tasksetSize;
protected String uuid;
protected String syncSource;
@JsonSerialize(using= ModelAsIdOnlySerializer.class)
protected User createdBy;
@JsonSerialize(using = ModelCollectionAsIdsOnlySerializer.class)
protected Collection taskSetTasks;
@JsonSerialize(using = ModelCollectionIdCodeNameSerializer.class)
protected List optionTypes;
//protected Collection
© 2015 - 2025 Weber Informatics LLC | Privacy Policy