com.formkiq.server.service.dto.SaveActionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of formkiq-server Show documentation
Show all versions of formkiq-server Show documentation
Server-side integration for the FormKiQ ios application
/*
* 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;
}
}