Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c0e1aef5252c50fff9c7cd04bd9f956be2443b80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*******************************************************************************
 * Copyright (c) 2008, 2015 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.help.internal.base.remote;

public class RemoteIC {

	private boolean enabled = false;

	private String name = ""; //$NON-NLS-1$

	private String host = ""; //$NON-NLS-1$

	private String path = ""; //$NON-NLS-1$

	private String protocol = ""; //$NON-NLS-1$

	private String port;

	private static final String PROTOCOL_HTTP = "http"; //$NON-NLS-1$

	public RemoteIC(boolean enabled, String name, String host, String path, String port){

    	this.enabled = enabled;
	    this.name    = name;
	    this.host    = host;
	    this.path    = path;
	    this.port    = port;
	    this.protocol    = PROTOCOL_HTTP;
	}

	public RemoteIC(boolean enabled, String name, String host, String path, String protocol, String port){

    	this.enabled = enabled;
	    this.name    = name;
	    this.host    = host;
	    this.path    = path;
	    this.protocol = protocol;
	    this.port    = port;

	}
	public String getHost() {
		return host;
	}

	public String getPath() {
		return path;
	}

	public String getProtocol() {
		return protocol;
	}

	public String getPort() {
		return port;
	}

	public String getName() {
		return name;
	}

	public boolean isEnabled() {
		return enabled;
	}

	public void setEnabled(boolean enabled) {
		this.enabled = enabled;
	}

	public void setHost(String host) {
		this.host = host;
	}

	public void setName(String name) {
		this.name = name;
	}

	public void setPath(String path) {
		this.path = path;
	}

	public void setProtocol(String protocol) {
		this.protocol = protocol;
	}

	public void setPort(String port) {
		this.port = port;
	}


	//I added this method, which overrides the original "equal" method in the class Object

   @Override
public boolean equals(Object anotherObject)throws ClassCastException {
        if (!(anotherObject instanceof RemoteIC))
            return false;
        if ( !(((RemoteIC) anotherObject).getName().equals(this.getName())))
            return false;
        if ( !(((RemoteIC) anotherObject).getHost().equals(this.getHost())))
        	return false;
        if ( !(((RemoteIC) anotherObject).getPath().equals(this.getPath())))
        	return false;
        if ( !(((RemoteIC) anotherObject).getProtocol().equals(this.getProtocol())))
        	return false;
        if ( !(((RemoteIC) anotherObject).getPort().equals(this.getPort())))
            return false;
        if ( !(((RemoteIC) anotherObject).isEnabled()==this.isEnabled()))
        	return false;

        //if we made it here, the the objects are the same
          return true;
   }
}

Back to the top