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

io.mosip.kernel.biometrics.entities.Entry Maven / Gradle / Ivy

There is a newer version: 1.3.0-beta.1
Show newest version
package io.mosip.kernel.biometrics.entities;

import javax.xml.bind.annotation.*;
import java.io.Serializable;

public class Entry implements Serializable {

    @XmlAttribute
	public String key;
    @XmlValue
	public String value;


	public Entry(){}
	public Entry(String tKey, String tValue){
		key = tKey;
		value = tValue;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy