Deprecated API
Contents
-
Deprecated ClassesClassDescriptionUse IFE_CHAR insteaduse Base1* stuff insteaduse Base1* stuff insteaduse GenericSSLSocketFactory()Used Executor framework
-
Deprecated Fields
-
Deprecated MethodsMethodDescriptionuse getTrailer()use setTraileruse getMessageTrailer(ISOMsg m) instead.use sendMessageTrailer(ISOMsg m, byte[] b instead.use sendMessageTrailer(ISOMsg m, byte[] b) instead.You should never use doublesIssuers do not always follow the recommended 'yyMM' format. Using the
java.util.Dateprevents from format manipulating to solve problem. UseSMAdapter.calculateCVD(String, T, T, String, String)with string version ofexpDateUse signature that specifies tdes flag.Use signature that specifies tdes flag.Issuers do not always follow the recommended 'yyMM' format. Using thejava.util.Dateprevents from format manipulating to solve problem. UseSMAdapter.verifyCVD(String, T, T, String, String, String)with string version ofexpDateIssuers do not always follow the recommended 'yyMM' format. Using thejava.util.Dateprevents from format manipulating to solve problem. UseSMAdapter.verifydCVV(String, T, String, Date, String, byte[], MKDMethod)with string version ofexpDateUse space.put insteaduse space.put instead
-
Deprecated ConstructorsConstructorDescriptionIn most cases, a message is created to attach it to the list.
It can be done by:
If for some reason this is not possible then a message can be created:TLVList tl = ...; tl.append(tag, value);
The intention is to not promote the use of TLVMsg outside. Due to the lack of compatibility of various TLV types at TLVList.append(TLVMsg)TLVList tl = TLVListBuilder.createInstance().build(); // or just new TLVList(); tl.append(tag, value); TLVMsg tm = tl.find(tag);