Package com.madgnome.jira.plugins.jirachievements.data.ao

Examples of com.madgnome.jira.plugins.jirachievements.data.ao.ComponentStatistic.save()


    ComponentStatistic componentStatistic = null;
    if (statisticRef != null)
    {
      componentStatistic = getOrCreate(projectKey, component, statisticRef, userWrapper);
      componentStatistic.setValue(value);
      componentStatistic.save();
    }

    return componentStatistic;
  }
View Full Code Here


    ComponentStatistic componentStatistic = ao.create(getClazz(), new DBParam("KEY", KeyableUtils.buildKey(projectKey, component, statisticRef, userWrapper)));
    componentStatistic.setProjectKey(projectKey);
    componentStatistic.setComponent(component);
    componentStatistic.setStatisticRef(statisticRef);
    componentStatistic.setUserWrapper(userWrapper);
    componentStatistic.save();

    return componentStatistic;
  }

}
View Full Code Here

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.