All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.backendless.servercode.extension.UserExtender Maven / Gradle / Ivy

The newest version!
/*
 * ********************************************************************************************************************
 *  

* BACKENDLESS.COM CONFIDENTIAL *

* ******************************************************************************************************************** *

* Copyright 2012 BACKENDLESS.COM. All Rights Reserved. *

* NOTICE: All information contained herein is, and remains the property of Backendless.com and its suppliers, * if any. The intellectual and technical concepts contained herein are proprietary to Backendless.com and its * suppliers and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade secret * or copyright law. Dissemination of this information or reproduction of this material is strictly forbidden * unless prior written permission is obtained from Backendless.com. *

* ******************************************************************************************************************** */ package com.backendless.servercode.extension; import com.backendless.BackendlessCollection; import com.backendless.commons.util.SocialType; import com.backendless.persistence.BackendlessDataQuery; import com.backendless.property.UserProperty; import com.backendless.servercode.ExecutionResult; import com.backendless.servercode.RunnerContext; import java.util.HashMap; import java.util.Map; /** * Created with IntelliJ IDEA. * User: ivanlappo * Date: 5/20/13 * Time: 12:40 PM * To change this template use File | Settings | File Templates. */ public abstract class UserExtender { public UserExtender() { } public void beforeFind( RunnerContext context, BackendlessDataQuery query ) throws Exception { } public void afterFind( RunnerContext context, BackendlessDataQuery query, ExecutionResult result ) throws Exception { } public void beforeFindById( RunnerContext context, Object objectId, String[] relations ) throws Exception { } public void afterFindById( RunnerContext context, Object objectId, String[] relations, ExecutionResult result ) throws Exception { } public void beforeLogin( RunnerContext context, String login, String password ) throws Exception { } public void afterLogin( RunnerContext context, String login, String password, ExecutionResult result ) throws Exception { } public void beforeSocialLogin( RunnerContext context, Map userValues, SocialType socialType) throws Exception { } public void afterSocialLogin( RunnerContext context, Map userValues, SocialType socialType, ExecutionResult result ) throws Exception { } public void beforeRegister( RunnerContext context, HashMap userValues ) throws Exception { } public void afterRegister( RunnerContext context, HashMap userValues, ExecutionResult result ) throws Exception { } public void beforeSocialRegister( RunnerContext context, Map userValues, SocialType socialType ) throws Exception { } public void afterSocialRegister( RunnerContext context, Map userValues, SocialType socialType, ExecutionResult result ) throws Exception { } public void beforeUpdate( RunnerContext context, HashMap userValues ) throws Exception { } public void afterUpdate( RunnerContext context, HashMap userValues, ExecutionResult result ) throws Exception { } public void beforeUpdateBulk( RunnerContext context, String whereClause, HashMap userValues ) throws Exception { } public void afterUpdateBulk( RunnerContext context, String whereClause, HashMap userValues, ExecutionResult result ) throws Exception { } public void beforeRemove( RunnerContext context, String id ) throws Exception { } public void afterRemove( RunnerContext context, String id, ExecutionResult result ) throws Exception { } public void beforeRemoveBulk( RunnerContext context, String whereClause ) throws Exception { } public void afterRemoveBulk( RunnerContext context, String whereClause, ExecutionResult result ) throws Exception { } public void beforeDescribe( RunnerContext context ) throws Exception { } public void afterDescribe( RunnerContext context, ExecutionResult result ) throws Exception { } public void beforeRestorePassword( RunnerContext context, String email ) throws Exception { } public void afterRestorePassword( RunnerContext context, String email, ExecutionResult result ) throws Exception { } public void beforeLogout( RunnerContext context ) throws Exception { } public void afterLogout( RunnerContext context, ExecutionResult result ) throws Exception { } public void afterEmailConfirmed( RunnerContext context, String confirmationKey, ExecutionResult result ) throws Exception { } public void beforeEmailConfirmed( RunnerContext context, String confirmationKey ) throws Exception { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy