master #134 add endAttribute encoder

This commit is contained in:
eblondel 2014-07-04 15:01:51 +02:00
parent 21b9cb1f00
commit 96d734f4e8

View File

@ -28,6 +28,7 @@ package it.geosolutions.geoserver.rest.encoder.metadata;
public class GSFeatureDimensionInfoEncoder extends GSDimensionInfoEncoder {
public final static String ATTRIBUTE="attribute";
public final static String END_ATTRIBUTE="endAttribute";
/**
* if this dimension is enabled this constructor should be called.
@ -46,6 +47,12 @@ public class GSFeatureDimensionInfoEncoder extends GSDimensionInfoEncoder {
set(ATTRIBUTE, attribute);
}
/**
* Set the end attribute used in the dimension (optional)
* @param endAttribute the dimension end attribute
*/
public void setEndAttribute(final String endAttribute){
set(END_ATTRIBUTE, endAttribute);
}
}