Skip to Main Content

Application Development Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Where to find the Jar files for a custom component?

User_R5V0EJun 8 2021

My team is working on migrating to a new version of UCM, however one custom component isn't working. First thing we need to do is to get it to compile, however we cannot due to the fact we don't have all the JARs in the classpath. Below is the snip of the import that it is needing, but cannot find. Opening the class in IntelliJ reveals that the class was compile in Java 6 and we wonder if moving to Java 1.7 will take care of the issue or we might have to move onward to figure out the errors that are being thrown.
Does anyone know of what jar files would contain these?
Thanks, Michael

import intradoc.shared.*;
import intradoc.common.*;
import intradoc.data.*;
import intradoc.server.*;
import intradoc.resource.*


public class PurgeExpiredPassPortSessionsFilter implements FilterImplementor 
{
   private static String HOURLY_ACTION = "CustomHourlyEvent";
   
   public int doFilter(Workspace ws, DataBinder eventData, ExecutionContext cxt) 
      throws DataException, ServiceException 
Comments
Post Details
Added on Jun 8 2021
1 comment
394 views