blob: 4b648547ef3a1a92735701d04bfd89f63d2089dc [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. 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. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.roller.weblogger.pojos;
import java.io.Serializable;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
/**
* Stores data for an OAuth consumer key and secret.
* There can be up to one for the whole site and up to one per user.
*/
public class OAuthConsumerRecord implements Serializable {
private String consumerKey;
private String consumerSecret;
private String userName;
public OAuthConsumerRecord() {
}
/**
* @return the consumerKey
*/
public String getConsumerKey() {
return consumerKey;
}
/**
* @param consumerKey the consumerKey to set
*/
public void setConsumerKey(String consumerKey) {
this.consumerKey = consumerKey;
}
/**
* @return the consumerSecret
*/
public String getConsumerSecret() {
return consumerSecret;
}
/**
* @param consumerSecret the consumerSecret to set
*/
public void setConsumerSecret(String consumerSecret) {
this.consumerSecret = consumerSecret;
}
/**
* @return the username
*/
public String getUserName() {
return userName;
}
/**
* @param username the username to set
*/
public void setUserName(String username) {
this.userName = username;
}
//------------------------------------------------------- Good citizenship
public String toString() {
StringBuilder buf = new StringBuilder();
buf.append("{");
buf.append(this.getConsumerKey());
buf.append("}");
return buf.toString();
}
public boolean equals(Object other) {
if (other == this) {
return true;
}
if (!(other instanceof OAuthConsumerRecord)) {
return false;
}
OAuthConsumerRecord o = (OAuthConsumerRecord)other;
return new EqualsBuilder()
.append(getConsumerKey(), o.getConsumerKey())
.isEquals();
}
public int hashCode() {
return new HashCodeBuilder().append(getConsumerKey()).toHashCode();
}
}