Example #1
0
  /*
   * This method is called whenever the Gateway detects a Type in a Method it could not found in the Custom-Mappings
   */
  @Override
  public void onMappingNotFound(String neededType, Object value) {

    mLogger.debug("onMappingNotFound: " + neededType + " value: " + value);
    // TODO Auto-generated method stub
    super.onMappingNotFound(neededType, value);
  }
Example #2
0
  /*
   * This method is called whenever the User invokes a Method
   */
  @Override
  public void onCall(String methodName, Class[] argClasses, Object[] argValues) {

    mLogger.debug("onCall: " + methodName);
    // TODO Auto-generated method stub
    super.onCall(methodName, argClasses, argValues);
  }