/* * Copyright (c) 2008-2016 Computer Network Information Center (CNIC), Chinese Academy of Sciences. * * This file is part of Duckling project. * * 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 cn.vlabs.umt.oauth.common.domain.credentials; /** * * * */ public class BasicCredentials implements Credentials { private String clientId; private String clientSecret; private Long issuedAt; private Long expiresIn; BasicCredentials() { } public BasicCredentials(String clientId, String clientSecret, Long issuedAt, Long expiresIn) { this.clientId = clientId; this.clientSecret = clientSecret; this.issuedAt = issuedAt; this.expiresIn = expiresIn; } @Override public String getClientId() { return clientId; } @Override public String getClientSecret() { return clientSecret; } @Override public Long getIssuedAt() { return issuedAt; } @Override public Long getExpiresIn() { return expiresIn; } public void setClientId(String clientId) { this.clientId = clientId; } public void setClientSecret(String clientSecret) { this.clientSecret = clientSecret; } public void setIssuedAt(Long issuedAt) { this.issuedAt = issuedAt; } public void setExpiresIn(Long expiresIn) { this.expiresIn = expiresIn; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } BasicCredentials that = (BasicCredentials)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 (expiresIn != null ? !expiresIn.equals(that.expiresIn) : that.expiresIn != null) { return false; } if (issuedAt != null ? !issuedAt.equals(that.issuedAt) : that.issuedAt != null) { return false; } return true; } @Override public int hashCode() { int result = clientId != null ? clientId.hashCode() : 0; result = 31 * result + (clientSecret != null ? clientSecret.hashCode() : 0); result = 31 * result + (issuedAt != null ? issuedAt.hashCode() : 0); result = 31 * result + (expiresIn != null ? expiresIn.hashCode() : 0); return result; } }