Package org.jclouds.ec2.domain
Class UserIdGroupPair
- java.lang.Object
-
- org.jclouds.ec2.domain.UserIdGroupPair
-
- All Implemented Interfaces:
Comparable<UserIdGroupPair>
public class UserIdGroupPair extends Object implements Comparable<UserIdGroupPair>
-
-
Constructor Summary
Constructors Constructor Description UserIdGroupPair(String userId, String groupName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(UserIdGroupPair o)
boolean
equals(Object obj)
String
getGroupName()
Name of the security group.String
getUserId()
AWS User ID of an identity.int
hashCode()
String
toString()
-
-
-
Method Detail
-
compareTo
public int compareTo(UserIdGroupPair o)
- Specified by:
compareTo
in interfaceComparable<UserIdGroupPair>
-
getUserId
public String getUserId()
AWS User ID of an identity. Cannot be used when specifying a CIDR IP address.
-
getGroupName
public String getGroupName()
Name of the security group. Cannot be used when specifying a CIDR IP address.
-
-