Package nz.org.winters.appspot.acrareporter.store

Examples of nz.org.winters.appspot.acrareporter.store.BasicErrorInfo


  private ACRALog        mACRALog;

  private void populateValues(ACRALog result)
  {
    mACRALog = result;
    BasicErrorInfo beio = mSelectedBasicErrorInfo;
    if (result == null)
    {
      stopLoading();
      captionPanelCenter.setText(constants.acraReportViewErrorFetch(""));
      clearData();
View Full Code Here


      return;
    }

    startLoading();

    final BasicErrorInfo beio = mSelectedBasicErrorInfo;

    remoteService.deleteReport(beio.REPORT_ID, new AsyncCallback<Void>()
    {

      @Override
View Full Code Here

  @UiHandler("checkLookedAt")
  void onCheckLookedAtClick(ClickEvent event)
  {
    startLoading();
    final BasicErrorInfo beio = mSelectedBasicErrorInfo;

    remoteService.markReportLookedAt(beio.REPORT_ID, checkLookedAt.getValue(), new AsyncCallback<Void>()
    {

      @Override
View Full Code Here

  @UiHandler("checkFixed")
  void onCheckFixedClick(ClickEvent event)
  {
    startLoading();

    final BasicErrorInfo beio = mSelectedBasicErrorInfo;

    remoteService.markReportFixed(beio.REPORT_ID, checkFixed.getValue(), new AsyncCallback<Void>()
    {

      @Override
View Full Code Here

  @UiHandler("checkEMailed")
  void onCheckEMailedClick(ClickEvent event)
  {
    startLoading();
    final BasicErrorInfo beio = mSelectedBasicErrorInfo;

    remoteService.markReportEMailed(beio.REPORT_ID, checkEMailed.getValue(), new AsyncCallback<Void>()
    {

      @Override
View Full Code Here

  @UiHandler("buttonReportRetrace")
  void onButtonReportRetraceClick(ClickEvent event)
  {
    startLoading();
    final BasicErrorInfo beio = mSelectedBasicErrorInfo;

    remoteService.retraceReport(beio.REPORT_ID, new AsyncCallback<Void>()
    {

      @Override
View Full Code Here

    if (log != null)
    {
      ObjectifyService.ofy().delete().entity(log);
    }

    BasicErrorInfo bei = ObjectifyService.ofy().load().type(BasicErrorInfo.class).filter("REPORT_ID", REPORT_ID).first().now();
    if (bei == null)
    {
      return;
    }
    ObjectifyService.ofy().delete().entity(bei);
View Full Code Here

  }

  @Override
  public void markReportLookedAt(String REPORT_ID, boolean state) throws IllegalArgumentException
  {
    BasicErrorInfo bei = ObjectifyService.ofy().load().type(BasicErrorInfo.class).filter("REPORT_ID", REPORT_ID).first().now();
    if (bei != null)
    {
      if (bei.lookedAt != state)
      {
        bei.lookedAt = state;
View Full Code Here

  }

  @Override
  public void markReportFixed(String REPORT_ID, boolean state) throws IllegalArgumentException
  {
    BasicErrorInfo bei = ObjectifyService.ofy().load().type(BasicErrorInfo.class).filter("REPORT_ID", REPORT_ID).first().now();
    if (bei != null)
    {
      if (bei.fixed != state)
      {
        bei.fixed = state;
View Full Code Here

  }

  @Override
  public void markReportEMailed(String REPORT_ID, boolean state) throws IllegalArgumentException
  {
    BasicErrorInfo bei = ObjectifyService.ofy().load().type(BasicErrorInfo.class).filter("REPORT_ID", REPORT_ID).first().now();
    if (bei != null)
    {
      bei.emailed = state;
      ObjectifyService.ofy().save().entity(bei);
View Full Code Here

TOP

Related Classes of nz.org.winters.appspot.acrareporter.store.BasicErrorInfo

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.