Android Open Source - LogLite Receiver






From Project

Back to project page LogLite.

License

The source code is released under:

MIT License

If you think the Android project LogLite listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Receiver/*from   www  .j av a2  s  . co m*/
 * 
 * 0.2
 * 
 * 2014/07/17
 * 
 * (The MIT License)
 * 
 * Copyright (c) R2B Apps <r2b.apps@gmail.com>
 * 
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * 'Software'), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * 
 */

package r2b.apps.utils.log;


/**
 * All receivers must have.
 */
public interface Receiver {

  /**
   * Close resources, flush and send info of the object.
   */
  public void close();
  
  /**
   * Send an ERROR log message.
   * 
   * @param tag
   *            Used to identify the source of a log message. It usually
   *            identifies the class or activity where the log call occurs.
   * @param msg
   *            The message you would like logged.
   */
  public void e(String parseLog);
  
  /**
   * Send a DEBUG log message.
   * 
   * @param tag
   *            Used to identify the source of a log message. It usually
   *            identifies the class or activity where the log call occurs.
   * @param msg
   *            The message you would like logged.
   */
  public void d(String parseLog);
  
  /**
   * Send a INFO log message.
   * 
   * @param tag
   *            Used to identify the source of a log message. It usually
   *            identifies the class or activity where the log call occurs.
   * @param msg
   *            The message you would like logged.
   */
  public void i(String parseLog);
  
  /**
   * Send a VERBOSE log message.
   * 
   * @param tag
   *            Used to identify the source of a log message. It usually
   *            identifies the class or activity where the log call occurs.
   * @param msg
   *            The message you would like logged.
   */
  public void v(String parseLog);

}




Java Source Code List

r2b.apps.loglite.FileLocationContextListener.java
r2b.apps.loglite.UploadDownloadFileServlet.java
r2b.apps.utils.Cons.java
r2b.apps.utils.FileUtils.java
r2b.apps.utils.MultipartEntity.java
r2b.apps.utils.StringUtils.java
r2b.apps.utils.Utils.java
r2b.apps.utils.ZipUtils.java
r2b.apps.utils.log.FileReceiver.java
r2b.apps.utils.log.Logger.java
r2b.apps.utils.log.Receiver.java
r2b.apps.utils.log.RemoteReceiver.java