Package main

Source Code of main.CheckinRunner

package main;

import java.io.IOException;
import java.net.URISyntaxException;

import mobileCheckiner.MobileCheckiner;

import org.apache.http.client.ClientProtocolException;

public class CheckinRunner
{
  public static void main(String[] args) throws ClientProtocolException, URISyntaxException, IOException
  {
    MobileCheckiner checkiner = new MobileCheckiner(args[0], args[1]);
    checkiner.checkin();
  }
}
TOP

Related Classes of main.CheckinRunner

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.