com.sap.ip.me.api.smartsync
Interface SyncBoResponseLog


Deprecated. interface will be removed in next MI releases. Use instead to access the same information. Copyright: Copyright (c) 2003

Company: SAP AG

public interface SyncBoResponseLog

A log holder of the former response that was updated with a new one; holds the SyncBoResponse type, the semantic key and a message string. *

The SyncBoResponseLog can be retrieve from the SyncBoResponse

Example: To get the current log


ErrorConflictInbox errorConflictInbox= SmartSyncRuntime.getInstance().getErrorConflictInbox();

//For the all synbo.

MeIterator it = errorConflictInbox.getAllSyncBoResponses();

while(it.hasNext()){

SyncBoResponse resp = (SyncBoResponse)it.next();

SyncBoResponseLog currLog = resp.getCurrentLog();

}

Since:
2.5
Version:
2.5
Author:
Jo Gel
See Also:
ErrorConflictInbox, SyncBoResolver, SyncBoResponseType, SyncBoResponse

Method Summary
 java.lang.String getMessageClass()
          Deprecated. Returns the messageClass from the server.
 int getMessageNumber()
          Deprecated. Returns the messageNumber from the server.
 SyncBoResponseType getResponseType()
          Deprecated. Returns the response type(Error or conflict)
 java.lang.String getText()
          Deprecated. Returns the text message from the server.
 java.lang.String getTimeStamp()
          Deprecated. Returns the server timestamp.
 

Method Detail

getResponseType

public SyncBoResponseType getResponseType()
Deprecated. 
Returns the response type(Error or conflict)

Returns:
SyncBoResponseType

getText

public java.lang.String getText()
Deprecated. 
Returns the text message from the server.

Returns:
the text message from the server

getMessageClass

public java.lang.String getMessageClass()
Deprecated. 
Returns the messageClass from the server.

Returns:
the messageClass from the server.

getMessageNumber

public int getMessageNumber()
Deprecated. 
Returns the messageNumber from the server.

Returns:
the messageNumber from the server.

getTimeStamp

public java.lang.String getTimeStamp()
Deprecated. 
Returns the server timestamp.

Returns:
the server timestamp.


Copyright © 2005 SAP AG. All Rights Reserved.