blob: b6e4f88fe6b9f1b9f2668c64e8b0e11f142c44e9 [file] [log] [blame]
/*
* Copyright (C) 2013 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.gct.idea.appengine;
import com.android.SdkConstants;
/** A list of constants used by the CloudTools Plugin */
public final class GctConstants {
public static final String APP_ENGINE_ANNOTATION_API = "com.google.api.server.spi.config.Api";
public static final String APP_ENGINE_ANNOTATION_API_CLASS = "com.google.api.server.spi.config.ApiClass";
public static final String APP_ENGINE_ANNOTATION_API_METHOD = "com.google.api.server.spi.config.ApiMethod";
public static final String APP_ENGINE_ANNOTATION_API_NAMESPACE = "com.google.api.server.spi.config.ApiNamespace";
public static final String APP_ENGINE_ANNOTATION_API_REFERENCE = "com.google.api.server.spi.config.ApiReference";
public static final String APP_ENGINE_ANNOTATION_API_RESOURCE_PROPERTY = "com.google.api.server.spi.config.ApiResourceProperty";
public static final String APP_ENGINE_ANNOTATION_API_TRANSFORMER = "com.google.api.server.spi.config.ApiTransformer";
public static final String APP_ENGINE_ANNOTATION_DEFAULT_VALUE = "com.google.api.server.spi.config.DefaultValue";
public static final String APP_ENGINE_ANNOTATION_NAMED = "com.google.api.server.spi.config.Named";
public static final String APP_ENGINE_ANNOTATION_NULLABLE = "com.google.api.server.spi.config.Nullable";
}