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

org.graylog.schema.GeoFields Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
/*
 * Copyright (C) 2020 Graylog, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Server Side Public License, version 1,
 * as published by MongoDB, Inc.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * Server Side Public License for more details.
 *
 * You should have received a copy of the Server Side Public License
 * along with this program. If not, see
 * .
 */
package org.graylog.schema;

public class GeoFields {
    public static final String GEO_CITY = "geo_city";
    public static final String GEO_CONTINENT = "geo_continent";
    public static final String GEO_COUNTRY_ISO = "geo_country_iso";
    public static final String GEO_COUNTRY_NAME = "geo_country_name";
    public static final String GEO_COORDINATES = "geo_coordinates";
    public static final String GEO_NAME = "geo_name";
    public static final String GEO_STATE = "geo_state";

    // To Be Removed
    @Deprecated
    public static final String GEO_CITY_NAME = GEO_CITY;
    @Deprecated
    public static final String GEO_STATE_NAME = GEO_STATE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy