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

io.castled.schema.mapping.FixedAppFieldsGroup Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.schema.mapping;

import io.castled.schema.SchemaFieldDTO;
import lombok.*;

import java.util.List;

@Getter
@Setter
@AllArgsConstructor
public class FixedAppFieldsGroup extends MappingGroup {

    private List mandatoryFields;
    private List optionalFields;

    public FixedAppFieldsGroup() {
        super("Which column would you like to sync to destination fields",
                "Configure how the columns in your query results should be mapped to fields in your destination",
                MappingGroupType.DESTINATION_FIELDS);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy