/* * Copyright 2014-2016 CyberVision, Inc. * * 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 org.kaaproject.kaa.server.sync; import org.kaaproject.kaa.server.common.utils.Utils; import java.nio.ByteBuffer; public class ProfileClientSync { private ByteBuffer endpointPublicKey; private ByteBuffer profileBody; private String endpointAccessToken; public ProfileClientSync() { } /** * Create new instance of <code>ProfileClientSync</code>. * * @param endpointPublicKey is byte buffer that contains endpoint key hash * @param profileBody is byte buffer that contains profile body * @param sdkToken is sdk token * @param endpointAccessToken is endpoint access token */ public ProfileClientSync(ByteBuffer endpointPublicKey, ByteBuffer profileBody, String sdkToken, String endpointAccessToken) { this.endpointPublicKey = endpointPublicKey; this.profileBody = profileBody; this.endpointAccessToken = endpointAccessToken; } public ByteBuffer getEndpointPublicKey() { return endpointPublicKey; } public void setEndpointPublicKey(ByteBuffer value) { this.endpointPublicKey = value; } public ByteBuffer getProfileBody() { return profileBody; } public void setProfileBody(ByteBuffer value) { this.profileBody = value; } public String getEndpointAccessToken() { return endpointAccessToken; } public void setEndpointAccessToken(String value) { this.endpointAccessToken = value; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((endpointAccessToken == null) ? 0 : endpointAccessToken.hashCode()); result = prime * result + ((endpointPublicKey == null) ? 0 : endpointPublicKey.hashCode()); result = prime * result + ((profileBody == null) ? 0 : profileBody.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } ProfileClientSync other = (ProfileClientSync) obj; if (endpointAccessToken == null) { if (other.endpointAccessToken != null) { return false; } } else if (!endpointAccessToken.equals(other.endpointAccessToken)) { return false; } if (endpointPublicKey == null) { if (other.endpointPublicKey != null) { return false; } } else if (!endpointPublicKey.equals(other.endpointPublicKey)) { return false; } if (profileBody == null) { if (other.profileBody != null) { return false; } } else if (!profileBody.equals(other.profileBody)) { return false; } return true; } @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("ProfileClientSync [endpointPublicKey="); builder.append(Utils.encodeHexString(endpointPublicKey)); builder.append(", profileBody="); builder.append(Utils.encodeHexString(profileBody)); builder.append(", endpointAccessToken="); builder.append(endpointAccessToken); builder.append("]"); return builder.toString(); } }