Package org.springframework.social.movies.netflix.api.impl

Source Code of org.springframework.social.movies.netflix.api.impl.NetFlixUserProfileMixin

/*
* Copyright 2014 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*      http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.social.movies.netflix.api.impl;

import java.io.IOException;

import org.codehaus.jackson.JsonNode;
import org.codehaus.jackson.JsonParser;
import org.codehaus.jackson.JsonProcessingException;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.map.DeserializationContext;
import org.codehaus.jackson.map.JsonDeserializer;
import org.codehaus.jackson.map.annotate.JsonDeserialize;
import org.springframework.social.movies.netflix.api.NetFlixUserProfile;
import org.springframework.social.movies.netflix.api.impl.NetFlixUserProfileMixin.NetFlixUserProfileDeserializer;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonDeserialize(using=NetFlixUserProfileDeserializer.class)
class NetFlixUserProfileMixin {

  static class NetFlixUserProfileDeserializer extends JsonDeserializer<NetFlixUserProfile> {
    @Override
    public NetFlixUserProfile deserialize(JsonParser jp, DeserializationContext context) throws IOException, JsonProcessingException {
      JsonNode tree = jp.readValueAsTree();
      JsonNode userNode = tree.get("user");
      return new NetFlixUserProfile(userNode.get("user_id").getValueAsText(),
          userNode.get("first_name").getValueAsText(), userNode.get("last_name").getValueAsText());
    }
  }

}
TOP

Related Classes of org.springframework.social.movies.netflix.api.impl.NetFlixUserProfileMixin

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.