Information

0
Story Points

Technologies

Decompiled Java File
package com.acme.anvil.service;

import com.acme.anvil.service.ProductCatalog;
import java.rmi.RemoteException;
import javax.ejb.CreateException;
import javax.ejb.EJBException;
import javax.ejb.EJBHome;

public interface ProductCatalogHome extends EJBHome {
   ProductCatalog create() throws CreateException, EJBException, RemoteException;
}