Package org.springframework.social.facebook.api

Examples of org.springframework.social.facebook.api.Location


    @Override
    public Location deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
      if (jp.getCurrentToken() == JsonToken.START_OBJECT) {
        return jp.readValueAs(Location.class);
      }
      return new Location(jp.getText());
    }
View Full Code Here

TOP

Related Classes of org.springframework.social.facebook.api.Location

Copyright © 2018 www.massapicom. 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.