Java tutorial
/******************************************************************************* * Copyright (C) 2016 Black Duck Software, Inc. * http://www.blackducksoftware.com/ * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 com.blackducksoftware.integration.hub.api.report; import java.util.UUID; import org.apache.commons.lang3.StringUtils; public class UserData { private final String id; private final String username; public UserData(final String id, final String username) { this.id = id; this.username = username; } public String getId() { return id; } public UUID getUUId() { if (StringUtils.isBlank(id)) { return null; } try { return UUID.fromString(id); } catch (final IllegalArgumentException e) { return null; } } public String getUsername() { return username; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((id == null) ? 0 : id.hashCode()); result = prime * result + ((username == null) ? 0 : username.hashCode()); return result; } @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (!(obj instanceof UserData)) { return false; } final UserData other = (UserData) obj; if (id == null) { if (other.id != null) { return false; } } else if (!id.equals(other.id)) { return false; } if (username == null) { if (other.username != null) { return false; } } else if (!username.equals(other.username)) { return false; } return true; } @Override public String toString() { final StringBuilder builder = new StringBuilder(); builder.append("UserData [id="); builder.append(id); builder.append(", username="); builder.append(username); builder.append("]"); return builder.toString(); } }