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

com.scaleset.geo.CRS Maven / Gradle / Ivy

The newest version!
package com.scaleset.geo;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;

import java.util.HashMap;
import java.util.Map;

@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class CRS {

    private String name;
    private Map properties = new HashMap();

    public CRS() {
    }

    public String getName() {
        return name;
    }

    public Map getProperties() {
        return properties;
    }

    public void setName(String name) {
        this.name = name;
    }

    public void setProperties(Map properties) {
        this.properties = properties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy