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

no.priv.bang.oldalbum.services.bean.BatchAddPicturesRequest Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
package no.priv.bang.oldalbum.services.bean;
/*
 * Copyright 2022-2024 Steinar Bang
 *
 * 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.
 */

public record BatchAddPicturesRequest(int parent, String batchAddUrl, Integer importYear, String defaultTitle) {

    public static Builder with() {
        return new Builder();
    }

    public static class Builder {

        private Builder() { }

        private int parent;
        private String batchAddUrl;
        private Integer importYear;
        private String defaultTitle;

        public BatchAddPicturesRequest build() {
            return new BatchAddPicturesRequest(parent, batchAddUrl, importYear, defaultTitle);
        }

        public Builder parent(int parent) {
            this.parent = parent;
            return this;
        }

        public Builder batchAddUrl(String batchAddUrl) {
            this.batchAddUrl = batchAddUrl;
            return this;
        }

        public Builder importYear(int importYear) {
            this.importYear = importYear;
            return this;
        }

        public Builder defaultTitle(String defaultTitle) {
            this.defaultTitle = defaultTitle;
            return this;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy