Example usage for com.google.common.collect ForwardingSet subclass-usage

List of usage examples for com.google.common.collect ForwardingSet subclass-usage

Introduction

In this page you can find the example usage for com.google.common.collect ForwardingSet subclass-usage.

Usage

From source file org.jclouds.openstack.keystone.v2_0.domain.Service.java

/**
 * An OpenStack service, such as Compute (Nova), Object Storage (Swift), or Image Service (Glance).
 * A service provides one or more endpoints through which users can access resources and perform
 * (presumably useful) operations.
 *
 * @author Adrian Cole

From source file org.jclouds.s3.domain.DeleteResult.java

/**
 * Multi-object delete API response
 * <p/>
 * Contains a list of the keys that were deleted
 */
public class DeleteResult extends ForwardingSet<String> {

From source file org.jclouds.aws.s3.domain.DeleteResult.java

/**
 * Multi-object delete API response
 * <p/>
 * Contains a list of the keys that were deleted
 *
 * @author Andrei Savu

From source file org.jclouds.vcloud.director.v1_5.domain.org.OrgList.java

/**
 * A list of organizations.
 *
 * @author Adrian Cole
 */
@XmlRootElement(name = "OrgList")

From source file org.jclouds.openstack.keystone.v2_0.domain.User.java

/**
 * A digital representation of a person, system, or service who uses OpenStack cloud services.
 * Keystone authentication services will validate that incoming request are being made by the user
 * who claims to be making the call. Users have a login and may be assigned tokens to access users.
 * Users may be directly assigned to a particular tenant and behave as if they are contained in that
 * tenant.

From source file org.jclouds.openstack.keystone.v2_0.domain.Access.java

/**
 * TODO
 *
 * @author Adrian Cole
 * @see <a href=
 *      "http://docs.openstack.org/api/openstack-identity-service/2.0/content/Identity-Service-Concepts-e1362.html"

From source file org.richfaces.demo.TracingSet.java

/**
 * @author Nick Belaevski
 *
 */
public class TracingSet<E> extends ForwardingSet<E> implements Serializable {
    private static final long serialVersionUID = 267329344963751893L;

From source file org.richfaces.demo.iteration.TracingSet.java

/**
 * @author Nick Belaevski
 *
 */
public class TracingSet<E> extends ForwardingSet<E> implements Serializable {
    private static final long serialVersionUID = 267329344963751893L;

From source file org.semanticweb.elk.justifications.BloomSet.java

/**
 * A set enhanced with a Bloom filter to quickly check set inclusion. The Bloom
 * filter uses just one hash function; containment of elements is not optimized.
 * As it is common with Bloom filters, removal of elements is not supported.
 * 
 * @see Set#contains(Object)

From source file org.jclouds.ec2.domain.SecurityGroup.java

/**
 *
 * @see <a href=
 *      "http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-ItemType-SecurityGroupItemType.html"
 *      />
 * @author Adrian Cole