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

com.marklogic.client.pojo.annotation.GeospatialPathIndexProperty Maven / Gradle / Ivy

/*
 * Copyright 2012-2015 MarkLogic Corporation
 *
 * 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.marklogic.client.pojo.annotation;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/** Use this annotation to specify that a Geospatial Path Index is needed
 * for this pojo property. The value should follow the rules
 * for any Geospatial Path Index in MarkLogic Server with coordinate
 * system "wgs84" and point format "point". Specifically, the value 
 * should be in "{latititude} {longitude}" point format where {latitude}
 * and {longitude} are numeric geospatial wgs84 position values.
 *
 * This annotation can be associated with a public field:
 * 
    import com.marklogic.client.pojo.annotation.GeospatialPathIndexProperty;
 *    public class MyClass {
 *      {@literal @}GeospatialPathIndexProperty
 *      public String myGeoProperty;
 *    }
* * or with a public getter method: *
 *    public class MyClass {
 *      private String myGeoProperty;
 *      {@literal @}GeospatialPathIndexProperty
 *      public String getMyGeoProperty() {
 *        return myGeoProperty;
 *      }
 *      // ... setter methods ...
 *    }
* * or with a public setter method: *
 *    public class MyClass {
 *      private String myGeoProperty;
 *      // ... getter methods ...
 *      {@literal @}GeospatialPathIndexProperty
 *      public void setMyGeoProperty(String myGeoProperty) {
 *        this.myGeoProperty = myGeoProperty;
 *      }
 *    }
* Run * {@link com.marklogic.client.pojo.util.GenerateIndexConfig} to generate * a package that can be used by administrators to create the indexes in * MarkLogic Server. */ @Retention(RetentionPolicy.RUNTIME) public @interface GeospatialPathIndexProperty { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy