Ignore:
Timestamp:
07/06/15 12:08:02 (9 years ago)
Author:
sherbold
Message:
  • EqualSOAPDataMap now serializable
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java

    r1985 r1986  
    9999        this.clientName = clientName; 
    100100        this.soapRequestBody = SOAPUtils.getSerialization(soapRequestBody); 
    101         EqualSOAPDataMap.INSTANCE.add(this, this.soapRequestBody); 
     101        EqualSOAPDataMap.getInstance().add(this, this.soapRequestBody); 
    102102    } 
    103103 
     
    150150                break; 
    151151            case RANDOM: 
    152                 requestBody = EqualSOAPDataMap.INSTANCE.getRandom(this); 
     152                requestBody = EqualSOAPDataMap.getInstance().getRandom(this); 
    153153                break; 
    154154            default: 
     
    157157        if( requestBody==null ) { 
    158158            System.err.println("foobar" + this); 
    159             System.err.println(EqualSOAPDataMap.INSTANCE.getAll(this)); 
     159            System.err.println(EqualSOAPDataMap.getInstance().getAll(this)); 
    160160        } 
    161161        try { 
Note: See TracChangeset for help on using the changeset viewer.