All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.robolectric.manifest.BroadcastReceiverData Maven / Gradle / Ivy

There is a newer version: 4.13
Show newest version
package org.robolectric.manifest;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;

public class BroadcastReceiverData extends PackageItemData {

  private static final String EXPORTED = "android:exported";
  private static final String NAME = "android:name";
  private static final String PERMISSION = "android:permission";

  private final Map attributes;
  private final List actions;
  private List intentFilters;

  public BroadcastReceiverData(
      Map attributes, MetaData metaData, List intentFilters) {
    super(attributes.get(NAME), metaData);
    this.attributes = attributes;
    this.actions = new ArrayList<>();
    this.intentFilters = new LinkedList<>(intentFilters);
  }

  public BroadcastReceiverData(String className, MetaData metaData) {
    super(className, metaData);
    this.actions = new ArrayList<>();
    this.attributes = new HashMap<>();
    intentFilters = new LinkedList<>();
  }

  public List getActions() {
    return actions;
  }

  public void addAction(String action) {
    this.actions.add(action);
  }

  public void setPermission(final String permission) {
    attributes.put(PERMISSION, permission);
  }

  public String getPermission() {
    return attributes.get(PERMISSION);
  }

  /**
   * Get the intent filters defined for the broadcast receiver.
   *
   * @return A list of intent filters.
   */
  public List getIntentFilters() {
    return intentFilters;
  }

  /**
   * Get the map for all attributes defined for the broadcast receiver.
   *
   * @return map of attributes names to values from the manifest.
   */
  public Map getAllAttributes() {
    return attributes;
  }

  /**
   * Returns whether this broadcast receiver is exported by checking the XML attribute.
   *
   * @return true if the broadcast receiver is exported
   */
  public boolean isExported() {
    boolean defaultValue = !intentFilters.isEmpty();
    return (attributes.containsKey(EXPORTED)
        ? Boolean.parseBoolean(attributes.get(EXPORTED))
        : defaultValue);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy