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

net.oauth2.jackson.OAuth2ObjectMapper Maven / Gradle / Ivy

The newest version!
/* 
 * Copyright (c) 2017 Georgi Pavlov ([email protected]).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the MIT license which accompanies 
 * this distribution, and is available at 
 * https://github.com/tengia/oauth-2/blob/master/LICENSE
 */
package net.oauth2.jackson;

import com.fasterxml.jackson.databind.ObjectMapper;

public class OAuth2ObjectMapper extends ObjectMapper {

	private static final long serialVersionUID = 1L;

	public OAuth2ObjectMapper() {
		registerModule(new OAuth2Module());
	}

	public OAuth2ObjectMapper(ObjectMapper src) {
		super(src);
		registerModule(new OAuth2Module());
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy