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

org.drools.task.Group Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.task;

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

import javax.persistence.Entity;

@Entity
public class Group extends OrganizationalEntity
    implements
    Externalizable {

    public Group() {
        super();
    }

    public Group(String id) {
        super( id );
    }

    public void writeExternal(ObjectOutput out) throws IOException {
        super.writeExternal( out );

    }

    public void readExternal(ObjectInput in) throws IOException,
                                            ClassNotFoundException {
        super.readExternal( in );
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy