/** * Copyright 2010 Newcastle University * * http://research.ncl.ac.uk/smart/ * * 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 org.apache.amber.oauth2.common.domain.client; /** * @author Maciej Machulak (m.p.machulak@ncl.ac.uk) * @author Lukasz Moren (lukasz.moren@ncl.ac.uk) * @author Aad van Moorsel (aad.vanmoorsel@ncl.ac.uk) */ public class BasicClientInfo implements ClientInfo { protected String name; protected String clientId; protected String clientSecret; protected String redirectUri; protected String clientUri; protected String description; protected String iconUri; protected Long issuedAt; protected Long expiresIn; public BasicClientInfo() { } @Override public String getClientId() { return clientId; } @Override public String getClientSecret() { return clientSecret; } @Override public String getRedirectUri() { return redirectUri; } @Override public String getName() { return name; } @Override public String getIconUri() { return iconUri; } @Override public String getClientUri() { return clientUri; } @Override public String getDescription() { return description; } public void setClientUri(String clientUri) { this.clientUri = clientUri; } public Long getIssuedAt() { return issuedAt; } public void setIssuedAt(Long issuedAt) { this.issuedAt = issuedAt; } public Long getExpiresIn() { return expiresIn; } public void setExpiresIn(Long expiresIn) { this.expiresIn = expiresIn; } public void setName(String name) { this.name = name; } public void setClientId(String clientId) { this.clientId = clientId; } public void setClientSecret(String clientSecret) { this.clientSecret = clientSecret; } public void setRedirectUri(String redirectUri) { this.redirectUri = redirectUri; } public void setIconUri(String iconUri) { this.iconUri = iconUri; } public void setDescription(String description) { this.description = description; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BasicClientInfo that = (BasicClientInfo)o; if (clientId != null ? !clientId.equals(that.clientId) : that.clientId != null) { return false; } if (clientSecret != null ? !clientSecret.equals(that.clientSecret) : that.clientSecret != null) { return false; } if (clientUri != null ? !clientUri.equals(that.clientUri) : that.clientUri != null) { return false; } if (description != null ? !description.equals(that.description) : that.description != null) { return false; } if (expiresIn != null ? !expiresIn.equals(that.expiresIn) : that.expiresIn != null) { return false; } if (iconUri != null ? !iconUri.equals(that.iconUri) : that.iconUri != null) { return false; } if (issuedAt != null ? !issuedAt.equals(that.issuedAt) : that.issuedAt != null) { return false; } if (name != null ? !name.equals(that.name) : that.name != null) { return false; } if (redirectUri != null ? !redirectUri.equals(that.redirectUri) : that.redirectUri != null) { return false; } return true; } @Override public int hashCode() { int result = name != null ? name.hashCode() : 0; result = 31 * result + (clientId != null ? clientId.hashCode() : 0); result = 31 * result + (clientSecret != null ? clientSecret.hashCode() : 0); result = 31 * result + (redirectUri != null ? redirectUri.hashCode() : 0); result = 31 * result + (clientUri != null ? clientUri.hashCode() : 0); result = 31 * result + (description != null ? description.hashCode() : 0); result = 31 * result + (iconUri != null ? iconUri.hashCode() : 0); result = 31 * result + (issuedAt != null ? issuedAt.hashCode() : 0); result = 31 * result + (expiresIn != null ? expiresIn.hashCode() : 0); return result; } }