2025-10-16 10:17:39 +02:00

52 lines
1.5 KiB
Java

/*
*
* Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 Inc. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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 cz.trask.migration.model.v32;
import java.io.Serializable;
/**
* DTO used to represent a ConditionGroup. This is analogous to {@code Pipeline} class and has a subset of attributes
* defined in that.
*/
public class ConditionGroupDTO implements Serializable{
private static final long serialVersionUID = 1L;
private String conditionGroupId;
private ConditionDTO [] conditions;
public String getConditionGroupId() {
return conditionGroupId;
}
public void setConditionGroupId(String conditionGroupId) {
this.conditionGroupId = conditionGroupId;
}
public ConditionDTO[] getConditions() {
return conditions;
}
public void setConditions(ConditionDTO[] conditions) {
this.conditions = conditions;
}
}