Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
12291 manish.sha 1
/*
2
 * Copyright 2010 Google Inc.
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
 * in compliance with the License. You may obtain a copy of the License at
6
 *
7
 * http://www.apache.org/licenses/LICENSE-2.0
8
 *
9
 * Unless required by applicable law or agreed to in writing, software distributed under the License
10
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11
 * or implied. See the License for the specific language governing permissions and limitations under
12
 * the License.
13
 */
14
/*
15
 * This code was generated by https://code.google.com/p/google-apis-client-generator/
16
 * (build: 2014-07-09 17:08:39 UTC)
17
 * on 2014-07-23 at 21:49:03 UTC 
18
 * Modify at your own risk.
19
 */
20
 
21
package com.google.api.services.content;
22
 
23
/**
24
 * Available OAuth 2.0 scopes for use with the Content API for Shopping.
25
 *
26
 * @since 1.4
27
 */
28
public class ShoppingContentScopes {
29
 
30
  /** Manage your product listings and accounts for Google Shopping. */
31
  public static final String CONTENT = "https://www.googleapis.com/auth/content";
32
 
33
  /**
34
   * Returns an unmodifiable set that contains all scopes declared by this class.
35
   *
36
   * @since 1.16
37
   */
38
  public static java.util.Set<String> all() {
39
    java.util.Set<String> set = new java.util.HashSet<String>();
40
    set.add(CONTENT);
41
    return java.util.Collections.unmodifiableSet(set);
42
  }
43
 
44
  private ShoppingContentScopes() {
45
  }
46
}