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

com.backendless.ContextHandlerJavaImpl Maven / Gradle / Ivy

package com.backendless;


class ContextHandlerJavaImpl implements ContextHandler
{
  private Object appContext;

  ContextHandlerJavaImpl()
  {
  }

  @Override
  public Object getAppContext()
  {
    return this.appContext;
  }

  @Override
  public void setContext( Object anyContext )
  {
    this.appContext = anyContext;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy