Package com.google.api.services.urlshortener

Examples of com.google.api.services.urlshortener.Urlshortener$Url$List


public class ListTest
{
   public static void main( String args[] )
   {
      List list = new List(); // create the List container

      // insert integers in list
      list.insertAtFront( -1 );
      list.print();
      list.insertAtFront( 0 );
      list.print();
      list.insertAtBack( 1 );
      list.print();
      list.insertAtBack( 5 );
      list.print();

      // remove objects from list; print after each removal
      try
      {
         Object removedObject = list.removeFromFront();
         System.out.printf( "%s removed\n", removedObject );
         list.print();

         removedObject = list.removeFromFront();
         System.out.printf( "%s removed\n", removedObject );
         list.print();

         removedObject = list.removeFromBack();
         System.out.printf( "%s removed\n", removedObject );
         list.print();

         removedObject = list.removeFromBack();
         System.out.printf( "%s removed\n", removedObject );
         list.print();
      } // end try
      catch ( EmptyListException emptyListException )
      {
         emptyListException.printStackTrace();
      } // end catch
View Full Code Here


        .setRefreshToken(userModel.getRefreshToken());

        // Urlshortener オブジェクトの生成
        Urlshortener.Builder builder = new Urlshortener.Builder(TRANSPORT, JSON_FACTORY, credential);
        builder.setApplicationName(Constants.GOOGLE_APPLICATION_NAME);
        Urlshortener urlshortener = builder.build();

        // URLの設定
        Url url = new Url();
        url.setLongUrl("http://plucial.com/u/" + userModel.getKey().getName() + "/a/" +activityModel.getKey().getName());

        // 短縮URLの発行
        url = urlshortener.url().insert(url).execute();

        return url.getId();
    }
View Full Code Here

TOP

Related Classes of com.google.api.services.urlshortener.Urlshortener$Url$List

Copyright © 2018 www.massapicom. 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.