PeerLink.java
/*
* This code is currently released under the Mozilla Public License.
* http://www.mozilla.org/MPL/
*
* Alternately you may apply the terms of the Apache Software License
*
* 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 com.rometools.modules.mediarss.types;
import java.io.Serializable;
import java.net.URL;
/**
* Optional tag to include peerLink information about a media object.
*
* @since MediaRSS 1.5.0
*/
public class PeerLink implements Serializable {
private static final long serialVersionUID = -7117791317811346321L;
private String type;
private URL href;
public String getType() {
return type;
}
public void setType(final String type) {
this.type = type;
}
public URL getHref() {
return href;
}
public void setHref(final URL href) {
this.href = href;
}
// CHECKSTYLE:OFF
@Override
public String toString() {
return "PeerLink [type=" + type + ", href=" + href + "]";
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + (href == null ? 0 : href.hashCode());
result = prime * result + (type == null ? 0 : type.hashCode());
return result;
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
final PeerLink other = (PeerLink) obj;
if (href == null) {
if (other.href != null) {
return false;
}
} else if (!href.equals(other.href)) {
return false;
}
if (type == null) {
if (other.type != null) {
return false;
}
} else if (!type.equals(other.type)) {
return false;
}
return true;
}
// CHECKSTYLE:ON
}