public boolean equals()

in java-operator/src/main/java/com/amazonwebservices/blogs/containers/kubernetes/model/IamUserGroupCustomObjectSpec.java [79:92]


	public boolean equals(java.lang.Object o) {
		if (this == o) {
			return true;
		}
		if (o == null || getClass() != o.getClass()) {
			return false;
		}
		IamUserGroupCustomObjectSpec that = (IamUserGroupCustomObjectSpec) o;
		Collections.sort(this.iamGroups);
		Collections.sort(that.iamGroups);
		return Objects.equals(this.iamUser, that.iamUser)
				&& Objects.equals(this.iamGroups, that.iamGroups)
				&& Objects.equals(this.username, that.username);
	}