Añado los fuentes de java

This commit is contained in:
2025-06-09 13:37:06 +02:00
parent d6c990e5d5
commit a97a6350ee
226 changed files with 57246 additions and 0 deletions
@@ -0,0 +1,27 @@
/*
* Creado el 15-feb-07
*/
package com.tarisan.chipcard.tpvvs.webservicetrayicon.messages;
import es.chipcard.util.*;
import org.w3c.dom.*;
/**
*
* @author jjrider
*/
public class AutID {
private Element xmlAutIDElement=null;
protected AutID(Element xmlAutIDElement){
this.xmlAutIDElement=xmlAutIDElement;
}
public String getTerminal(){
return SerClsXMLUtils.dameValorEl(xmlAutIDElement,"term");
}
public String getTimestamp(){
return SerClsXMLUtils.dameValorEl(xmlAutIDElement,"timestamp");
}
}