blob: 54ec8c2d9ac11be8908b415c476a7db202a41ef3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.server;
/**
* @author Andrew M. Finkbeiner
*/
public class PropertyParamter {
private final String type;
private final String version;
private final String comment;
private final String station;
private final boolean useJiniLookup;
private final boolean isLocalConnector;
public PropertyParamter(String version, String comment, String station, String type, boolean useJiniLookup, boolean isLocalConnector) {
this.version = version;
this.comment = comment;
this.station = station;
this.type = type;
this.useJiniLookup = useJiniLookup;
this.isLocalConnector = isLocalConnector;
}
public String getType() {
return type;
}
public String getVersion() {
return version;
}
public String getComment() {
return comment;
}
public String getStation() {
return station;
}
public boolean isLocalConnector() {
return isLocalConnector;
}
public boolean useJiniLookup() {
return useJiniLookup;
}
}