Package org.sonar.wsclient.services

Examples of org.sonar.wsclient.services.Favourite


public class FavouriteUnmarshaller extends AbstractUnmarshaller<Favourite> {

  @Override
  protected Favourite parse(Object json) {
    WSUtils utils = WSUtils.getINSTANCE();
    return new Favourite()
        .setId(utils.getInteger(json, "id"))
        .setKey(utils.getString(json, "key"))
        .setName(utils.getString(json, "name"))
        .setScope(utils.getString(json, "scope"))
        .setQualifier(utils.getString(json, "qualifier"))
View Full Code Here

TOP

Related Classes of org.sonar.wsclient.services.Favourite

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.