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

com.clouway.oauth2.app.AuthBootstrap Maven / Gradle / Ivy

The newest version!
package com.clouway.oauth2.app;

/**
 * @author Ivan Stefanov 
 */
public class AuthBootstrap {
  private static final Integer PORT = 9002;

  public static void main(String[] args) {

    AppServer server = new AppServer(PORT);
    try {
      server.start();
    } catch (Exception e) {
      e.printStackTrace();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy