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

com.salesmanager.shop.model.configuration.ConfigurationEntity Maven / Gradle / Ivy

The newest version!
package com.salesmanager.shop.model.configuration;

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

import com.salesmanager.shop.model.entity.Entity;

public class ConfigurationEntity extends Entity {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	private String key = null;
	private boolean active;
	private String value;
	private String type;
	private String code;
	private Map keys = new HashMap();
	private Map> integrationOptions = new HashMap>();
	
	
	
	public String getKey() {
		return key;
	}
	public void setKey(String key) {
		this.key = key;
	}
	public boolean isActive() {
		return active;
	}
	public void setActive(boolean active) {
		this.active = active;
	}
	public String getValue() {
		return value;
	}
	public void setValue(String value) {
		this.value = value;
	}
	public String getType() {
		return type;
	}
	public void setType(String type) {
		this.type = type;
	}
	public Map getKeys() {
		return keys;
	}
	public void setKeys(Map keys) {
		this.keys = keys;
	}
	public String getCode() {
		return code;
	}
	public void setCode(String code) {
		this.code = code;
	}
	public Map> getIntegrationOptions() {
		return integrationOptions;
	}
	public void setIntegrationOptions(Map> integrationOptions) {
		this.integrationOptions = integrationOptions;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy