Mike 9.13.2011

  • Finished a java library for authenticating to and pulling from google’s spreadsheets, the methods for querying are:
    • listSpreadsheets
    • listColumns
    • executeQuery
  • Now I’ll use these 3 methods to create methods that will be called by the client such as:
    • getUniqueCounts
    • or a paginated table query
  • The library is mavenized but I don’t want to mavenize the actual google app engine project since it works so well with the GAE Eclipse Plugin, so I simply added a pom to the project which copies the dependencies to the correct folder.  Whenever there’s a dependency change, we just have to run ‘mvn package’ and all the dependencies should be updated but it won’t actually build anything.
  • Now I’m trying to bridge the gap between the 3 simple methods and the client