com.vmware.l10n.record.model.ComponentSourceModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of singleton-manager-l10n Show documentation
Show all versions of singleton-manager-l10n Show documentation
A service that provides support for Software Internationalization and Localization
/*
* Copyright 2019-2022 VMware, Inc.
* SPDX-License-Identifier: EPL-2.0
*/
package com.vmware.l10n.record.model;
import java.io.Serializable;
import java.util.Map;
/**
*
*
* @author shihu
*
*/
public class ComponentSourceModel implements Serializable{
private static final long serialVersionUID = 3020200175972875633L;
private String product;
private String version;
private String component;
private String locale;
private Map messages;
public String getProduct() {
return product;
}
public void setProduct(String product) {
this.product = product;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getComponent() {
return component;
}
public void setComponent(String component) {
this.component = component;
}
public String getLocale() {
return locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
public Map getMessages() {
return messages;
}
public void setMessages(Map messages) {
this.messages = messages;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy