org.pentaho.di.www.CarteObjectEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kettle-engine Show documentation
Show all versions of kettle-engine Show documentation
Container pom for Pentaho Data Integration modules
The newest version!
/*! ******************************************************************************
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2017 by Hitachi Vantara : http://www.pentaho.com
*
*******************************************************************************
*
* 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 org.pentaho.di.www;
import java.util.Comparator;
import javax.xml.bind.annotation.XmlRootElement;
/**
* A carte object entry in the transformation or job maps
*
* @author matt
*
*/
@XmlRootElement
public class CarteObjectEntry implements Comparator, Comparable {
private String name;
private String id;
public CarteObjectEntry() {
}
public CarteObjectEntry( String name, String id ) {
this.name = name;
this.id = id;
}
@Override
public boolean equals( Object obj ) {
if ( !( obj instanceof CarteObjectEntry ) ) {
return false;
}
if ( obj == this ) {
return true;
}
CarteObjectEntry entry = (CarteObjectEntry) obj;
return entry.getId().equals( id );
}
public int hashCode() {
return id.hashCode();
}
public int compare( CarteObjectEntry o1, CarteObjectEntry o2 ) {
int cmpName = o1.getName().compareTo( o2.getName() );
if ( cmpName != 0 ) {
return cmpName;
}
return o1.getId().compareTo( o2.getId() );
}
public int compareTo( CarteObjectEntry o ) {
return compare( this, o );
}
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name
* the name to set
*/
public void setName( String name ) {
this.name = name;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @param id
* the id to set
*/
public void setId( String id ) {
this.id = id;
}
}