com.backendless.transaction.OperationUpdateFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backendless Show documentation
Show all versions of backendless Show documentation
Android SDK used by developers to provide Backendless API in apps.
package com.backendless.transaction;
import java.util.Map;
public class OperationUpdateFactory extends OperationFactory
{
@Override
protected Class getClazz()
{
return OperationUpdate.class;
}
@Override
protected OperationUpdate createOperation( OperationType operationType, String table, String opResultId, Object payload )
{
return new OperationUpdate( operationType, table, opResultId, (Map) payload );
}
}