blob: 3e5840cb4b1fba15bd30a818741114bd9e93b597 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.equinox.internal.p2.update;
import org.eclipse.equinox.p2.directorywatcher.DirectoryWatcher;
/*
* Internal class contains information about watchers and sites. Used for caching.
*/
public class SiteInfo {
private DirectoryWatcher watcher;
private SiteListener listener;
private Site site;
private String url;
public SiteInfo(Site site, DirectoryWatcher watcher, SiteListener listener) {
super();
this.site = site;
this.url = site.getUrl();
this.watcher = watcher;
this.listener = listener;
}
public Site getSite() {
return site;
}
public String getUrl() {
return url;
}
public DirectoryWatcher getWatcher() {
return watcher;
}
public SiteListener getListener() {
return listener;
}
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
return url.hashCode();
}
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object obj) {
return url.equals(obj);
}
}