001/*-
002 * #%L
003 * HAPI FHIR Storage api
004 * %%
005 * Copyright (C) 2014 - 2024 Smile CDR, Inc.
006 * %%
007 * Licensed under the Apache License, Version 2.0 (the "License");
008 * you may not use this file except in compliance with the License.
009 * You may obtain a copy of the License at
010 *
011 *      http://www.apache.org/licenses/LICENSE-2.0
012 *
013 * Unless required by applicable law or agreed to in writing, software
014 * distributed under the License is distributed on an "AS IS" BASIS,
015 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
016 * See the License for the specific language governing permissions and
017 * limitations under the License.
018 * #L%
019 */
020package ca.uhn.fhir.batch2.importpull.models;
021
022import ca.uhn.fhir.jpa.bulk.imprt.model.JobFileRowProcessingModeEnum;
023import ca.uhn.fhir.model.api.IModelJson;
024import com.fasterxml.jackson.annotation.JsonProperty;
025
026public class BulkImportFilePartitionResult implements IModelJson {
027
028        /**
029         * The file index for the import job
030         */
031        @JsonProperty("fileIndex")
032        private int myFileIndex;
033
034        /**
035         * Row processing mode
036         */
037        @JsonProperty("rowProcessingMode")
038        private JobFileRowProcessingModeEnum myProcessingMode;
039
040        /**
041         * The job description
042         */
043        @JsonProperty("jobDescription")
044        private String myJobDescription;
045
046        /**
047         * The file description
048         */
049        @JsonProperty("fileDescription")
050        private String myFileDescription;
051
052        public int getFileIndex() {
053                return myFileIndex;
054        }
055
056        public void setFileIndex(int theFileIndex) {
057                myFileIndex = theFileIndex;
058        }
059
060        public JobFileRowProcessingModeEnum getProcessingMode() {
061                return myProcessingMode;
062        }
063
064        public void setProcessingMode(JobFileRowProcessingModeEnum theProcessingMode) {
065                myProcessingMode = theProcessingMode;
066        }
067
068        public String getJobDescription() {
069                return myJobDescription;
070        }
071
072        public void setJobDescription(String theJobDescription) {
073                myJobDescription = theJobDescription;
074        }
075
076        public String getFileDescription() {
077                return myFileDescription;
078        }
079
080        public void setFileDescription(String theFileDescription) {
081                myFileDescription = theFileDescription;
082        }
083}