package com.ikea.kompis.extendedcontent;

import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import com.ikea.kompis.user.LoginActivity;

public class ECLoginActivity extends LoginActivity
{
  private void handleAction(Intent paramIntent)
  {
    if ("android.nfc.action.NDEF_DISCOVERED".equals(paramIntent.getAction()))
      this.mLaunchedFromCatalogueURI = ((Uri)paramIntent.getExtras().getParcelable("LaunchedFromCatalogue"));
    if (this.mLaunchedFromCatalogueURI != null)
    {
      Intent localIntent = new Intent();
      localIntent.putExtra("eccontent", this.mLaunchedFromCatalogueURI);
      setResult(-1, localIntent);
      finish();
      overridePendingTransition(0, 2130968598);
    }
  }

  public void onNewIntent(Intent paramIntent)
  {
    super.onNewIntent(paramIntent);
    handleAction(paramIntent);
  }
}

/* Location:           C:\Documents and Settings\Cesar Cabello Cea\Mis documentos\Downloads\apk-downloader\com.ikea.kompis-6_dex2jar.jar
 * Qualified Name:     com.ikea.kompis.extendedcontent.ECLoginActivity
 * JD-Core Version:    0.6.2
 */