/** * Copyright 2015 ArcBees Inc. * * 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.arcbees.googleanalytic; public class GaParameterConstants { public static final String POST_URL = "http://www.google-analytics.com/collect"; public static final String PROTOCOL_VERSION = "v"; public static final String TRACKING_ID = "tid"; public static final String CLIENT_ID = "cid"; public static final String APPLICATION_NAME = "an"; public static final String APPLICATION_VERSION = "av"; public static final String HIT_TYPE = "t"; public static final String EVENT_HIT_TYPE = "event"; public static final String EVENT_CATEGORY = "ec"; public static final String EVENT_ACTION = "ea"; public static final String EVENT_LABEL = "el"; public static final String EVENT_VALUE = "ev"; }