]> www.average.org Git - WhereAmI.git/blob - src/org/average/whereami/ClientCredentials.java
make accessProtectedResource a method
[WhereAmI.git] / src / org / average / whereami / ClientCredentials.java
1 package org.average.whereami;
2
3 public class ClientCredentials {
4
5   public static final String clientID = null;
6   public static final String clientSecret = null;
7
8   public static void errorIfNotSpecified() {
9     if (clientID == null) {
10       System.err.println("Please enter your client ID in " +
11         ClientCredentials.class);
12       System.exit(1);
13     }
14   }
15 }