Skip navigation links

Oracle® Fusion Middleware Content Integration Suite (CIS) Java API Reference
11g Release 1 (11.1)

E17350-01


com.stellent.cis.client.api.sis.process
Interface ISISProcessAPI

All Superinterfaces:
ICommandAPI

Deprecated. Fixed API deprecated since 10gR3

public interface ISISProcessAPI
extends ICommandAPI

The command API implementation of the process commands.


Field Summary
static java.lang.String API_CATEGORY
          Deprecated. Category for this Command API

 

Method Summary
 ISISCreatePackage _createPackage()
          Deprecated.  
 ISISPackageAttachment _createPackageAttachment()
          Deprecated.  
 ISISPackageField _createPackageField()
          Deprecated.  
 ISISPlaceInFlowRequest _createPlaceInFlowRequest()
          Deprecated.  
 java.util.List addJournalEntry(ISISContext SISContext, ISISPackage fixedPackage, java.lang.String journalEntry)
          Deprecated. Allows the user to add a journal entry to a package.
 java.util.List addJournalEntry(ISISContext SISContext, java.util.List fixedPackages, java.lang.String journalEntry)
          Deprecated. Allows the user to add a journal entry to a package.
 java.util.List completePackage(ISISContext SISContext, ISISPackage fixedPackage, java.lang.String decisionText)
          Deprecated. Allows the user to complete a package when supplied with the Package object.
 ISISCreatePackageResult createPackage(ISISContext SISContext, ISISCreatePackage createPackage)
          Deprecated. Allows the user to create a package.
 java.util.List createPackages(ISISContext SISContext, java.util.List fixedPackages)
          Deprecated. Allows the user to create one or more packages.
 java.util.List getOptionList(ISISContext SISContext, ISISPackageTemplate template)
          Deprecated. Allows the user to get a list of Field Option Lists based on a template name.
 java.util.List getOptionList(ISISContext SISContext, java.lang.String templateName)
          Deprecated. Allows the user to get a list of Field Option Lists based on a template name.
 ISISPackage getPackageByID(ISISContext SISContext, int packageID)
          Deprecated. Allows the user to get a single package by ID.
 java.util.List getPackageDecisions(ISISContext SISContext, int packageID)
          Deprecated. Allows the user to get the Complete Package decisions for a particular Package as specified by the package object.
 java.util.List getPackageDecisions(ISISContext SISContext, ISISPackage fixedPackage)
          Deprecated. Allows the user to get the Complete Package decisions for a particular Package as specified by the package object.
 java.util.List getPackageFields(ISISContext SISContext, int packageID)
          Deprecated. Allows the user to get the field values of a package based on the package record id.
 java.util.List getPackageFields(ISISContext SISContext, ISISPackage fixedPackage)
          Deprecated. Allows the user to get the field values of a package based on the package record id.
 java.util.List getPackagesByID(ISISContext SISContext, int packageID)
          Deprecated. Allows the user to get a packages by ID.
 java.util.List getPackagesByProfile(ISISContext SISContext, ISISProcessProfile profile)
          Deprecated. Allows the user to run a package search based on a named profile.
 java.util.List getPackagesByPrompt(ISISContext SISContext, ISISPromptedProfile promptedProfile)
          Deprecated. Allows the user to get a list of packages based on a named profile containing prompts.
 java.util.List getPackageTemplates(ISISContext SISContext)
          Deprecated. Allows the user to get the available package templates.
 java.util.List getProcessProfiles(ISISContext SISContext)
          Deprecated. Returns available fixed process profiles.
 java.util.List getProfilePrompts(ISISContext SISContext, ISISProcessProfile processProfile)
          Deprecated. Allows the User to get a list of prompts based on a Profile ID.
 java.util.List getProfilePrompts(ISISContext SISContext, java.util.List processProfiles)
          Deprecated. Allows the User to get a list of prompts based on a Profile ID.
 java.util.List getTemplateStartEvents(ISISContext SISContext, ISISPackageTemplate template)
          Deprecated. Allows the user to get the start events for a Package Template when providing a Template Name.
 java.util.List getTemplateStartEvents(ISISContext SISContext, java.lang.String templateName)
          Deprecated. Allows the user to get the start events for a Package Template when providing a Template Name.
 java.util.List lockPackage(ISISContext SISContext, int packageID)
          Deprecated. Allows the user to Lock one Package by the Package object.
 java.util.List lockPackage(ISISContext SISContext, ISISPackage fixedPackage)
          Deprecated. Allows the user to Lock one Package by the Package object.
 java.util.List lockPackageInQueue(ISISContext SISContext, int packageID, java.lang.String queueName)
          Deprecated. Allows the user to lock a single package only if they are in the specified queue.
 java.util.List lockPackageInQueue(ISISContext SISContext, ISISPackage fixedPackage, java.lang.String queueName)
          Deprecated. Allows the user to lock a single package only if they are in the specified queue.
 java.util.List placePackageInFlow(ISISContext SISContext, java.util.List placeInFlowReqs)
          Deprecated. Allows the user to place one or more packages in the process.
 java.util.List setPackageFields(ISISContext SISContext, int packageID, java.util.List packageFields)
          Deprecated. Allows the user to set the field values of one package by providing both the Package id and the PackageFieldsArray object.
 java.util.List setPackageFields(ISISContext SISContext, ISISPackage fixedPackage, java.util.List packageFields)
          Deprecated. Allows the user to set the field values of one package by providing both the Package id and the PackageFieldsArray object.
 java.util.List unlockPackage(ISISContext SISContext, int packageID)
          Deprecated. Allows the user to unlock one Package by the Package object.
 java.util.List unlockPackage(ISISContext SISContext, ISISPackage fixedPackage)
          Deprecated. Allows the user to unlock one Package by the Package object.

 

Field Detail

API_CATEGORY

static final java.lang.String API_CATEGORY
Deprecated. 
Category for this Command API
See Also:
Constant Field Values

Method Detail

completePackage

java.util.List completePackage(ISISContext SISContext,
                               ISISPackage fixedPackage,
                               java.lang.String decisionText)
                               throws CommandException
Deprecated. 
Allows the user to complete a package when supplied with the Package object. Only one package can be completed at a time through this call. ISISPackageResult
Parameters:
SISContext - the context object representing the current user
fixedPackage - The package to complete.
decisionText - The associated text for this completion.
Throws:
CommandException

createPackages

java.util.List createPackages(ISISContext SISContext,
                              java.util.List fixedPackages)
                              throws CommandException
Deprecated. 
Allows the user to create one or more packages. Returns list of result objects. ISISCreatePackageResult
Parameters:
SISContext - the context object representing the current user
fixedPackages - A list of packages to create
Throws:
CommandException

getProfilePrompts

java.util.List getProfilePrompts(ISISContext SISContext,
                                 ISISProcessProfile processProfile)
                                 throws CommandException
Deprecated. 
Allows the User to get a list of prompts based on a Profile ID. ISISProfilePrompt
Parameters:
SISContext - the context object representing the current user
processProfile - The process profile to get prompts for.
Throws:
CommandException

getProfilePrompts

java.util.List getProfilePrompts(ISISContext SISContext,
                                 java.util.List processProfiles)
                                 throws CommandException
Deprecated. 
Allows the User to get a list of prompts based on a Profile ID. ISISProfilePrompt
Parameters:
SISContext - the context object representing the current user
processProfiles - A list of profiles ISISProcessProfile
Throws:
CommandException

unlockPackage

java.util.List unlockPackage(ISISContext SISContext,
                             int packageID)
                             throws CommandException
Deprecated. 
Allows the user to unlock one Package by the Package object. Returns a list of package results ISISPackageResult
Parameters:
SISContext - the context object representing the current user
packageID - The package id of the package to unlock.
Throws:
CommandException

unlockPackage

java.util.List unlockPackage(ISISContext SISContext,
                             ISISPackage fixedPackage)
                             throws CommandException
Deprecated. 
Allows the user to unlock one Package by the Package object. Returns a list of package results ISISPackageResult
Parameters:
SISContext - the context object representing the current user
fixedPackage - The package to unlock.
Throws:
CommandException

getPackageFields

java.util.List getPackageFields(ISISContext SISContext,
                                int packageID)
                                throws CommandException
Deprecated. 
Allows the user to get the field values of a package based on the package record id. ISISPackageField
Parameters:
SISContext - the context object representing the current user
packageID - The ID of a Package.
Throws:
CommandException

getPackageFields

java.util.List getPackageFields(ISISContext SISContext,
                                ISISPackage fixedPackage)
                                throws CommandException
Deprecated. 
Allows the user to get the field values of a package based on the package record id. ISISPackageField
Parameters:
SISContext - the context object representing the current user
fixedPackage - The package to complete.
Throws:
CommandException

placePackageInFlow

java.util.List placePackageInFlow(ISISContext SISContext,
                                  java.util.List placeInFlowReqs)
                                  throws CommandException
Deprecated. 
Allows the user to place one or more packages in the process. Returns a list of result objects ISISPlaceInFlow
Parameters:
SISContext - the context object representing the current user
placeInFlowReqs - A list of place in flow requests. ISISPlaceInFlowRequest
Throws:
CommandException

getOptionList

java.util.List getOptionList(ISISContext SISContext,
                             java.lang.String templateName)
                             throws CommandException
Deprecated. 
Allows the user to get a list of Field Option Lists based on a template name. Returns a list of ISISPackageFieldOptionList objects.
Parameters:
SISContext - the context object representing the current user
templateName - The name of template to retrieve option lists from.
Throws:
CommandException

getOptionList

java.util.List getOptionList(ISISContext SISContext,
                             ISISPackageTemplate template)
                             throws CommandException
Deprecated. 
Allows the user to get a list of Field Option Lists based on a template name. Returns a list of ISISPackageFieldOptionList objects.
Parameters:
SISContext - the context object representing the current user
template - The template to retrieve option lists from.
Throws:
CommandException

createPackage

ISISCreatePackageResult createPackage(ISISContext SISContext,
                                      ISISCreatePackage createPackage)
                                      throws CommandException
Deprecated. 
Allows the user to create a package.
Parameters:
SISContext - the context object representing the current user
createPackage - The package to create
Throws:
CommandException

getPackagesByPrompt

java.util.List getPackagesByPrompt(ISISContext SISContext,
                                   ISISPromptedProfile promptedProfile)
                                   throws CommandException
Deprecated. 
Allows the user to get a list of packages based on a named profile containing prompts. ISISPackage
Parameters:
SISContext - the context object representing the current user
promptedProfile - The prompted profile object.
Throws:
CommandException

getPackagesByProfile

java.util.List getPackagesByProfile(ISISContext SISContext,
                                    ISISProcessProfile profile)
                                    throws CommandException
Deprecated. 
Allows the user to run a package search based on a named profile. ISISPackage
Parameters:
SISContext - the context object representing the current user
profile - The process profile to perform search with.
Throws:
CommandException

addJournalEntry

java.util.List addJournalEntry(ISISContext SISContext,
                               ISISPackage fixedPackage,
                               java.lang.String journalEntry)
                               throws CommandException
Deprecated. 
Allows the user to add a journal entry to a package. Returns a list of package result objects. ISISPackageResult
Parameters:
SISContext - the context object representing the current user
fixedPackage - The package to add journal entry to.
journalEntry - The text of the journal entry to add to the package.
Throws:
CommandException

addJournalEntry

java.util.List addJournalEntry(ISISContext SISContext,
                               java.util.List fixedPackages,
                               java.lang.String journalEntry)
                               throws CommandException
Deprecated. 
Allows the user to add a journal entry to a package. Returns a list of package result objects. ISISPackageResult
Parameters:
SISContext - the context object representing the current user
fixedPackages - A list of packages to add journal entry to.
journalEntry - The text of the journal entry to add to the package.
Throws:
CommandException

getPackageDecisions

java.util.List getPackageDecisions(ISISContext SISContext,
                                   int packageID)
                                   throws CommandException
Deprecated. 
Allows the user to get the Complete Package decisions for a particular Package as specified by the package object. Returns a list of package decision objects. ISISPackageDecision
Parameters:
SISContext - the context object representing the current user
packageID - The package id to get decisions for.
Throws:
CommandException

getPackageDecisions

java.util.List getPackageDecisions(ISISContext SISContext,
                                   ISISPackage fixedPackage)
                                   throws CommandException
Deprecated. 
Allows the user to get the Complete Package decisions for a particular Package as specified by the package object. Returns a list of package decision objects. ISISPackageDecision
Parameters:
SISContext - the context object representing the current user
fixedPackage - The package to get decisions for.
Throws:
CommandException

lockPackageInQueue

java.util.List lockPackageInQueue(ISISContext SISContext,
                                  int packageID,
                                  java.lang.String queueName)
                                  throws CommandException
Deprecated. 
Allows the user to lock a single package only if they are in the specified queue. Returns a list of ISISPackageResult objects.
Parameters:
SISContext - the context object representing the current user
packageID - The package id of the package to lock.
queueName - The queue that the package must be in.
Throws:
CommandException

lockPackageInQueue

java.util.List lockPackageInQueue(ISISContext SISContext,
                                  ISISPackage fixedPackage,
                                  java.lang.String queueName)
                                  throws CommandException
Deprecated. 
Allows the user to lock a single package only if they are in the specified queue. Returns a list of ISISPackageResult objects.
Parameters:
SISContext - the context object representing the current user
fixedPackage - The package object to lock.
queueName - The queue that the package must be in.
Throws:
CommandException

getProcessProfiles

java.util.List getProcessProfiles(ISISContext SISContext)
                                  throws CommandException
Deprecated. 
Returns available fixed process profiles. ISISProcessProfile
Parameters:
SISContext - the context object representing the current user
Throws:
CommandException

getPackagesByID

java.util.List getPackagesByID(ISISContext SISContext,
                               int packageID)
                               throws CommandException
Deprecated. 
Allows the user to get a packages by ID. ISISPackage
Parameters:
SISContext - the context object representing the current user
packageID - The id of the package to retrieve.
Throws:
CommandException

getPackageTemplates

java.util.List getPackageTemplates(ISISContext SISContext)
                                   throws CommandException
Deprecated. 
Allows the user to get the available package templates. This call also indicates which of those templates can be used for the creation of packages. ISISPackageTemplate
Parameters:
SISContext - the context object representing the current user
Throws:
CommandException

getTemplateStartEvents

java.util.List getTemplateStartEvents(ISISContext SISContext,
                                      java.lang.String templateName)
                                      throws CommandException
Deprecated. 
Allows the user to get the start events for a Package Template when providing a Template Name. Returns a list of ISISTemplateStartEvent objects.
Parameters:
SISContext - the context object representing the current user
templateName - The template name to retrieve events for.
Throws:
CommandException

getTemplateStartEvents

java.util.List getTemplateStartEvents(ISISContext SISContext,
                                      ISISPackageTemplate template)
                                      throws CommandException
Deprecated. 
Allows the user to get the start events for a Package Template when providing a Template Name. Returns a list of ISISTemplateStartEvent objects.
Parameters:
SISContext - the context object representing the current user
template - The template object to retrieve events for.
Throws:
CommandException

getPackageByID

ISISPackage getPackageByID(ISISContext SISContext,
                           int packageID)
                           throws CommandException
Deprecated. 
Allows the user to get a single package by ID.
Parameters:
SISContext - the context object representing the current user
packageID - The id of the package to retrieve.
Throws:
CommandException

setPackageFields

java.util.List setPackageFields(ISISContext SISContext,
                                int packageID,
                                java.util.List packageFields)
                                throws CommandException
Deprecated. 
Allows the user to set the field values of one package by providing both the Package id and the PackageFieldsArray object. Returns a list of package fields ISISPackageField
Parameters:
SISContext - the context object representing the current user
packageID - The package ID to set fields on.
packageFields - The fields to set.
Throws:
CommandException

setPackageFields

java.util.List setPackageFields(ISISContext SISContext,
                                ISISPackage fixedPackage,
                                java.util.List packageFields)
                                throws CommandException
Deprecated. 
Allows the user to set the field values of one package by providing both the Package id and the PackageFieldsArray object. Returns a list of package fields ISISPackageField
Parameters:
SISContext - the context object representing the current user
fixedPackage - The package to set fields on.
packageFields - The fields to set.
Throws:
CommandException

lockPackage

java.util.List lockPackage(ISISContext SISContext,
                           int packageID)
                           throws CommandException
Deprecated. 
Allows the user to Lock one Package by the Package object. Returns a list of ISISPackageResult objects.
Parameters:
SISContext - the context object representing the current user
packageID - The package id of the package to lock.
Throws:
CommandException

lockPackage

java.util.List lockPackage(ISISContext SISContext,
                           ISISPackage fixedPackage)
                           throws CommandException
Deprecated. 
Allows the user to Lock one Package by the Package object. Returns a list of ISISPackageResult objects.
Parameters:
SISContext - the context object representing the current user
fixedPackage - The package object to lock.
Throws:
CommandException

_createPackage

ISISCreatePackage _createPackage()
Deprecated. 

_createPackageAttachment

ISISPackageAttachment _createPackageAttachment()
Deprecated. 

_createPlaceInFlowRequest

ISISPlaceInFlowRequest _createPlaceInFlowRequest()
Deprecated. 

_createPackageField

ISISPackageField _createPackageField()
Deprecated. 

Skip navigation links

Oracle® Fusion Middleware Content Integration Suite (CIS) Java API Reference
11g Release 1 (11.1)

E17350-01


Copyright © 1996, 2010, Oracle and/or its affiliates. All rights reserved.