All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.smartling.api.sdk.auth.AuthenticationCommand Maven / Gradle / Ivy

There is a newer version: 4.0.25
Show newest version
package com.smartling.api.sdk.auth;

import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;

public class AuthenticationCommand
{
    private final String userIdentifier;
    private final String userSecret;

    public AuthenticationCommand(String userIdentifier, String userSecret)
    {
        this.userIdentifier = userIdentifier;
        this.userSecret = userSecret;
    }

    public String getUserIdentifier()
    {
        return userIdentifier;
    }

    public String getUserSecret()
    {
        return userSecret;
    }

    @Override public boolean equals(final Object o)
    {
        if (this == o)
            return true;
        if (o == null || getClass() != o.getClass())
            return false;

        final AuthenticationCommand command = (AuthenticationCommand)o;

        return new EqualsBuilder()
                .append(userIdentifier, command.getUserIdentifier())
                .append(userSecret, command.getUserSecret())
                .isEquals();
     }

    @Override public int hashCode()
    {
        return new HashCodeBuilder()
                .append(userIdentifier)
                .append(userSecret)
                .hashCode();
    }

    @Override public String toString()
    {
        return "AuthenticationCommand{" +
                "userIdentifier='" + userIdentifier + '\'' +
                ", userSecret='" + userSecret + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy