All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kie.kogito.examples.FlightsModelOutput Maven / Gradle / Ivy

There is a newer version: 1.21.0.Final
Show newest version
/*
 * Copyright 2019 Red Hat, Inc. and/or its affiliates.
 *
 * Licensed 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 org.kie.kogito.examples;

import org.kie.kogito.MapInput;
import org.kie.kogito.MapInputId;
import org.kie.kogito.MapOutput;
import java.util.Map;
import java.util.HashMap;
import org.kie.kogito.MappableToModel;
import org.kie.kogito.Model;

@org.kie.kogito.codegen.Generated(value = "kogito-codegen", reference = "flights", name = "Flights", hidden = true)
public class FlightsModelOutput implements org.kie.kogito.Model, MapInput, MapInputId, MapOutput, MappableToModel {

    private String id;

    public void setId(String id) {
        this.id = id;
    }

    public String getId() {
        return this.id;
    }

    @org.kie.kogito.codegen.VariableInfo(tags = "")
    @com.fasterxml.jackson.annotation.JsonProperty(value = "flight")
    @javax.validation.Valid()
    private org.kie.kogito.examples.domain.Flight flight;

    public org.kie.kogito.examples.domain.Flight getFlight() {
        return flight;
    }

    public void setFlight(org.kie.kogito.examples.domain.Flight flight) {
        this.flight = flight;
    }

    @org.kie.kogito.codegen.VariableInfo(tags = "")
    @com.fasterxml.jackson.annotation.JsonProperty(value = "isSolving")
    @javax.validation.Valid()
    private java.lang.Boolean isSolving;

    public java.lang.Boolean getIsSolving() {
        return isSolving;
    }

    public void setIsSolving(java.lang.Boolean isSolving) {
        this.isSolving = isSolving;
    }

    @org.kie.kogito.codegen.VariableInfo(tags = "")
    @com.fasterxml.jackson.annotation.JsonProperty(value = "processId")
    @javax.validation.Valid()
    private java.lang.String processId;

    public java.lang.String getProcessId() {
        return processId;
    }

    public void setProcessId(java.lang.String processId) {
        this.processId = processId;
    }

    @org.kie.kogito.codegen.VariableInfo(tags = "")
    @com.fasterxml.jackson.annotation.JsonProperty(value = "params")
    @javax.validation.Valid()
    private org.kie.kogito.examples.domain.FlightDTO params;

    public org.kie.kogito.examples.domain.FlightDTO getParams() {
        return params;
    }

    public void setParams(org.kie.kogito.examples.domain.FlightDTO params) {
        this.params = params;
    }

    @org.kie.kogito.codegen.VariableInfo(tags = "")
    @com.fasterxml.jackson.annotation.JsonProperty(value = "isPassengerListFinalized")
    @javax.validation.Valid()
    private java.lang.Boolean isPassengerListFinalized;

    public java.lang.Boolean getIsPassengerListFinalized() {
        return isPassengerListFinalized;
    }

    public void setIsPassengerListFinalized(java.lang.Boolean isPassengerListFinalized) {
        this.isPassengerListFinalized = isPassengerListFinalized;
    }

    @Override()
    public FlightsModel toModel() {
        FlightsModel result = new FlightsModel();
        result.setId(getId());
        result.setFlight(getFlight());
        result.setIsSolving(getIsSolving());
        result.setProcessId(getProcessId());
        result.setParams(getParams());
        result.setIsPassengerListFinalized(getIsPassengerListFinalized());
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy