/*
* Generated by XDoclet - Do not edit!
*/
package org.openxava.test.model;
/**
* Home interface for Shipment.
*/
public interface ShipmentHome
extends javax.ejb.EJBHome
{
public static final String COMP_NAME="java:comp/env/ejb/Shipment";
public static final String JNDI_NAME="@subcontext@/ejb/org.openxava.test.model/Shipment";
public org.openxava.test.model.ShipmentRemote create(java.util.Map values)
throws javax.ejb.CreateException,org.openxava.validators.ValidationException,java.rmi.RemoteException;
public org.openxava.test.model.ShipmentRemote create(org.openxava.test.model.ShipmentData data)
throws javax.ejb.CreateException,org.openxava.validators.ValidationException,java.rmi.RemoteException;
public org.openxava.test.model.ShipmentRemote create(org.openxava.test.model.ShipmentValue value)
throws javax.ejb.CreateException,org.openxava.validators.ValidationException,java.rmi.RemoteException;
public java.util.Collection findByCustomerContactPerson(int customer_number)
throws javax.ejb.FinderException,java.rmi.RemoteException;
public java.util.Collection findByMode(int mode)
throws javax.ejb.FinderException,java.rmi.RemoteException;
public java.util.Collection findAll()
throws javax.ejb.FinderException,java.rmi.RemoteException;
public org.openxava.test.model.ShipmentRemote findByTypeModeNumber(java.lang.String type,int mode,int number)
throws javax.ejb.FinderException,java.rmi.RemoteException;
public org.openxava.test.model.ShipmentRemote findByPrimaryKey(org.openxava.test.model.ShipmentKey pk)
throws javax.ejb.FinderException,java.rmi.RemoteException;
}
|