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

org.jclouds.aws.sqs.domain.Queue Maven / Gradle / Ivy

The newest version!
/**
 *
 * Copyright (C) 2010 Cloud Conscious, LLC. 
 *
 * ====================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ====================================================================
 */

package org.jclouds.aws.sqs.domain;

import static com.google.common.base.Preconditions.checkNotNull;

import java.net.URI;

/**
 * 
 * @see 
 * @author Adrian Cole
 */
public class Queue implements Comparable {
   private final String region;
   private final String name;
   private final URI location;

   public Queue(String region, String name, URI location) {
      this.region = checkNotNull(region,"region");
      this.location = checkNotNull(location, "location");
      this.name = checkNotNull(name, "name");
   }

   @Override
   public int compareTo(Queue o) {
      return location.toASCIIString().compareTo(o.location.toASCIIString());
   }

   public String getRegion() {
      return region;
   }
   
   public URI getLocation() {
      return location;
   }

   public String getName() {
      return name;
   }

   @Override
   public int hashCode() {
      final int prime = 31;
      int result = 1;
      result = prime * result + ((location == null) ? 0 : location.hashCode());
      result = prime * result + ((name == null) ? 0 : name.hashCode());
      result = prime * result + ((region == null) ? 0 : region.hashCode());
      return result;
   }

   @Override
   public boolean equals(Object obj) {
      if (this == obj)
         return true;
      if (obj == null)
         return false;
      if (getClass() != obj.getClass())
         return false;
      Queue other = (Queue) obj;
      if (location == null) {
         if (other.location != null)
            return false;
      } else if (!location.equals(other.location))
         return false;
      if (name == null) {
         if (other.name != null)
            return false;
      } else if (!name.equals(other.name))
         return false;
      if (region == null) {
         if (other.region != null)
            return false;
      } else if (!region.equals(other.region))
         return false;
      return true;
   }

   @Override
   public String toString() {
      return "Queue [location=" + location + ", name=" + name + ", region=" + region + "]";
   }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy