All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.drools.task.event.TaskEventKey Maven / Gradle / Ivy

/**
 * Copyright 2010 JBoss Inc
 *
 * 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.drools.task.event;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;

import org.drools.eventmessaging.EventKey;


public class TaskEventKey implements EventKey, Externalizable {
    private Class event;
    private long taskId = -1;
    
    public TaskEventKey() {
        
    }
        
    public TaskEventKey(Class event, long taskId) {
        this.event = event;
        this.taskId = taskId;
    }
    
    public void writeExternal(ObjectOutput out) throws IOException {
        out.writeUTF(  event.getName() );
        out.writeLong( taskId );
    }  
    
    public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException {
        String className = in.readUTF();
        try {
            event = (Class< ? extends TaskEvent>) Thread.currentThread().getContextClassLoader().loadClass( className );
        } catch( Exception e ) {
            event = (Class< ? extends TaskEvent>) getClass().getClassLoader().loadClass( className );
        }
        
        taskId = in.readLong();
    }    
            
    public Class< ? extends TaskEvent> getEvent() {
        return event;
    }

    public long getTaskId() {
        return this.taskId;
    }

    @Override
    public int hashCode() {
        final int prime = 31;
        int result = 1;
        result = prime * result + ((event == null) ? 0 : event.hashCode());
        result = prime * result + (int) (taskId ^ (taskId >>> 32));
        return result;
    }

    @Override
    public boolean equals(Object obj) {
        if ( this == obj ) return true;
        if ( obj == null ) return false;
        if ( !(obj instanceof TaskEventKey) ) return false;
        TaskEventKey other = (TaskEventKey) obj;
        if ( event == null ) {
            if ( other.event != null ) return false;
        } else if ( !event.equals( other.event ) ) return false;
        if ( taskId != other.taskId ) return false;
        return true;
    }     
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy