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

com.formkiq.server.service.dto.SaveActionRequest Maven / Gradle / Ivy

There is a newer version: 0.6.1
Show newest version
/*
 * Copyright (C) 2016 FormKiQ Inc.
 *
 * 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 com.formkiq.server.service.dto;

import java.util.List;
import java.util.Map;

/**
 * A Save Action Request.
 *
 */
public class SaveActionRequest {

    /** Save Action Name. */
    private String name;

    /** Save Client ID. */
    private String clientid;

    /** Save Action Values Map. */
    private Map values;

    /** Save Action Validators Map. */
    private Map> validators;

    /**
     * default constructor.
     */
    public SaveActionRequest() {
    }

    /**
     * @return {@link String}
     */
    public String getName() {
        return this.name;
    }

    /**
     * @param str String
     */
    public void setName(final String str) {
        this.name = str;
    }

    /**
     * @return Map<String, String>
     */
    public Map getValues() {
        return this.values;
    }

    /**
     * @param valueMap Map<String, String>
     */
    public void setValues(final Map valueMap) {
        this.values = valueMap;
    }

    /**
     * @return Map<String, List<ActionValidator>>
     */
    public Map> getValidators() {
        return this.validators;
    }

    /**
     * @param validatorMap Map<String, List<ActionValidator>>
     */
    public void setValidators(
            final Map> validatorMap) {
        this.validators = validatorMap;
    }

    /**
     * @return {@link String}
     */
    public String getClientid() {
        return this.clientid;
    }

    /**
     * @param client {@link String}
     */
    public void setClientid(final String client) {
        this.clientid = client;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy