if (createSeq.getAcksTo() != null) {
storageManager.setAcksTo(seqId, createSeq.getAcksTo().getAddress().toString());
}
//Support offer
SequenceOffer offer = createSeq.getOffer();
boolean offerAccepted = false;
boolean hasOffer = false;
if (offer != null) {
hasOffer = true;
offerAccepted = acceptOrRejectOffer(offer);
if (offerAccepted) {
String responseSeqId = null;
if (offer != null) {
Identifier id = offer.getIdentifier();
if (id != null)
responseSeqId = id.getIdentifier();
}
String incomingSeqId = seqId;
if (responseSeqId != null) {