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

com.urbanairship.api.push.model.audience.ValueSelector Maven / Gradle / Ivy

There is a newer version: 9.4.2
Show newest version
/*
 * Copyright (c) 2013-2016.  Urban Airship and Contributors
 */

package com.urbanairship.api.push.model.audience;

import java.util.Map;
import java.util.Optional;

/**
 * A selector which has a single value associated with it. Most atomic
 * selector expressions fall into this category, e.g. { "tag" :
 * "san_francisco_giants" }.
 */
public interface ValueSelector extends Selector {
    String getValue();
    Optional> getAttributes();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy