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

target.apidocs.com.google.api.services.commentanalyzer.v1alpha1.CommentAnalyzerRequestInitializer.html Maven / Gradle / Ivy

There is a newer version: v1alpha1-rev20200426-1.30.9
Show newest version






CommentAnalyzerRequestInitializer (Perspective Comment Analyzer API v1alpha1-rev20200301-1.30.8)












com.google.api.services.commentanalyzer.v1alpha1

Class CommentAnalyzerRequestInitializer

  • All Implemented Interfaces:
    GoogleClientRequestInitializer


    public class CommentAnalyzerRequestInitializer
    extends CommonGoogleJsonClientRequestInitializer
    CommentAnalyzer request initializer for setting properties like key and userIp.

    The simplest usage is to use it to set the key parameter:

      public static final GoogleClientRequestInitializer KEY_INITIALIZER =
          new CommentAnalyzerRequestInitializer(KEY);
     

    There is also a constructor to set both the key and userIp parameters:

      public static final GoogleClientRequestInitializer INITIALIZER =
          new CommentAnalyzerRequestInitializer(KEY, USER_IP);
     

    If you want to implement custom logic, extend it like this:

      public static class MyRequestInitializer extends CommentAnalyzerRequestInitializer {
    
         @Override
        public void initializeCommentAnalyzerRequest(CommentAnalyzerRequest <? > request)
            throws IOException {
          // custom logic
        }
      }
     

    Finally, to set the key and userIp parameters and insert custom logic, extend it like this:

      public static class MyRequestInitializer2 extends CommentAnalyzerRequestInitializer {
    
        public MyKeyRequestInitializer() {
          super(KEY, USER_IP);
        }
    
         @Override
        public void initializeCommentAnalyzerRequest(CommentAnalyzerRequest <? > request)
            throws IOException {
          // custom logic
        }
      }
     

    Subclasses should be thread-safe.

    Since:
    1.12

Copyright © 2011–2020 Google. All rights reserved.





© 2015 - 2025 Weber Informatics LLC | Privacy Policy