view flys-aft/src/main/java/de/intevation/aft/IdPair.java @ 5622:b28a6d05e969

Add a new mechanism in mapfish print call to add arbitary data maps Data properties are identified by starting with mapfish-data and they are then split in info value pairs where info can be the description of the information and value the value of the information to be transported in the data map.
author Andre Heinecke <aheinecke@intevation.de>
date Tue, 09 Apr 2013 19:04:32 +0200
parents a310aceb2e51
children
line wrap: on
line source
package de.intevation.aft;

public class IdPair
{
    protected int id1;
    protected int id2;

    public IdPair() {
    }

    public IdPair(int id1) {
        this.id1 = id1;
    }

    public IdPair(int id1, int id2) {
        this(id1);
        this.id2 = id2;
    }

    public int getId1() {
        return id1;
    }

    public void setId1(int id1) {
        this.id1 = id1;
    }

    public int getId2() {
        return id2;
    }

    public void setId2(int id2) {
        this.id2 = id2;
    }

    public String toString() {
        return "[IdPair: id1=" + id1 + ", id2=" + id2 + "]";
    }
}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org