1

How to Serialize and de-serialize below object using jackson library ?

public class Notification2 implements Serializable {
    private String eventTypeName;
    private TerminationPoint_T tpObj;
    

    public Notification2() {
    }

        
    public TerminationPoint_T getTpObj() {
        return tpObj;
    }

    public void setTpObj(TerminationPoint_T tpObj) {
        this.tpObj = tpObj;
    }

    
}

public final class TerminationPoint_T
    implements org.omg.CORBA.portable.IDLEntity
{
    
    
    public org.tmforum.mtnm.terminationPoint.TPType_T type;
    
    public TerminationPoint_T( org.tmforum.mtnm.terminationPoint.TPType_T type)
    {
        
        this.type = type;
        
    }
}

ERROR:

com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot construct instance of org.tmforum.mtnm.terminationPoint.TPType_T (although at least one Creator exists): cannot deserialize from Object value (no delegate- or property-based Creator) at [Source: (String)

Techiee
  • 11
  • 2

0 Answers0