![JAR search and dependency download from the Maven repository](/logo.png)
org.loom.simpleds.json.PagedListJacksonMixin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of loom-appengine Show documentation
Show all versions of loom-appengine Show documentation
Uploads all artifacts belonging to configuration ':archives'.
The newest version!
package org.loom.simpleds.json;
import java.util.List;
import org.codehaus.jackson.annotate.JsonAutoDetect;
import org.codehaus.jackson.annotate.JsonMethod;
import org.codehaus.jackson.annotate.JsonProperty;
import org.codehaus.jackson.map.annotate.JsonDeserialize;
import org.simpleds.PagedList;
/**
* Mixin used to serialize {@link PagedList} instances using Jackson.
* To use, invoke
*
* objectMapper.getSerializationConfig().addMixInAnnotations(PagedList.class, PagedListJacksonMixIn.class);
*
* Details about mixins in Jackson can be seen here
* @author icoloma
*
*/
@JsonAutoDetect(JsonMethod.NONE)
@JsonDeserialize(as=PagedList.class)
public interface PagedListJacksonMixin {
@JsonProperty
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy