Package | Description |
---|---|
com.spss.psapi.extensions.common |
This provides definitions that are used to manage streams, documents and models in scripting, and for extensions using the CLEF Java API.
|
com.spss.psapi.interaction |
This provides classes used for interactive modeling.
|
com.spss.psapi.session |
This provides support for the construction and use of data mining sessions.
|
com.spss.psapi.task |
This provides objects that create and represent data mining tasks.
|
com.spss.psapi.transform |
This provides objects that perform data processing and model building.
|
Modifier and Type | Method and Description |
---|---|
void |
ExtensionInteractor.getContent(java.lang.String filename,
java.io.OutputStream target)
Transfers content from the specified file owned by the peer.
|
byte[] |
ExtensionInteractor.getContentAsBinary(java.lang.String filename)
Returns binary content from the specified file owned by the peer.
|
java.lang.String |
ExtensionInteractor.getContentAsUTF8(java.lang.String filename)
Returns text content from the specified file owned by the peer.
|
void |
ExtensionInteractor.putContent(java.lang.String filename,
byte[] content)
Transfers binary content to the specified file owned by the peer.
|
void |
ExtensionInteractor.putContent(java.lang.String filename,
ContentContainer container)
Transfers content to the specified file owned by the peer.
|
void |
ExtensionInteractor.putContent(java.lang.String filename,
java.io.InputStream source)
Transfers content to the specified file owned by the peer.
|
void |
ExtensionInteractor.putContent(java.lang.String filename,
java.lang.String text)
Transfers text content to the specified file owned by the peer.
|
java.lang.String |
ExtensionInteractor.request(java.lang.String req)
Executes the specified request on the peer.
|
Modifier and Type | Method and Description |
---|---|
ExecutionHandle |
DecisionListModelInteractor.runTask(Task task)
Executes the supplied task synchronously and waits for it to complete.
|
Modifier and Type | Method and Description |
---|---|
abstract Session |
SessionFactory.create(java.util.Locale locale)
Creates a new session using the specified locale.
|
abstract Session |
SessionFactory.create(java.util.Locale locale,
ServerConnectionDescriptor serverDescriptor)
Creates a new session using the specified locale.
|
abstract Session |
SessionFactory.create(java.util.Locale locale,
ServerConnectionDescriptor serverDescriptor,
RepositoryConnectionDescriptor repositoryDescriptor)
Creates a new session using the specified locale.
|
abstract Session |
SessionFactory.create(java.util.Locale locale,
ServerConnectionDescriptor serverDescriptor,
RepositoryConnectionDescriptor repositoryDescriptor,
ASCredentialDescriptor asConnectionDescriptor)
Create a new sessio using the sepcified locale, The session is automatically
connected to the specified server
|
abstract AdministratorSession |
SessionFactory.createAdministratorSession(java.util.Locale locale,
ServerConnectionDescriptor serverDescriptor)
Creates a new admin session using the specified locale.
|
java.lang.String |
Repository.createFolder(java.lang.String parentFolder,
java.lang.String newFolder)
Creates a new folder with the specified name.
|
void |
Repository.deleteFolder(java.lang.String folder)
Deletes the specified folder and any content within it.
|
ExecutionHandle |
Session.publish(DataWriter node)
Executes the specified
DataWriter in publish mode to obtain a
PublishedImage . |
ExecutionHandle |
Session.publish(TerminalProcessor node,
boolean inline)
Executes the specified node in publish mode to obtain a
PublishedImage ready for inline scoring. |
void |
Repository.renameFolder(java.lang.String folder,
java.lang.String newName)
Renames the specified folder.
|
DocumentOutput |
Repository.retrieveDocument(java.lang.String path,
java.lang.String version,
java.lang.String label,
boolean autoManage)
Retrieves a document output from the specified path.
|
ModelOutput |
Repository.retrieveModel(java.lang.String path,
java.lang.String version,
java.lang.String label,
boolean autoManage)
Retrieves a model output from the specified path.
|
Processor |
Repository.retrieveProcessor(java.lang.String path,
java.lang.String version,
java.lang.String label,
ProcessorDiagram diagram)
Retrieves a node from the specified path and inserts it into the supplied diagram.
|
ProcessorStream |
Repository.retrieveStream(java.lang.String path,
java.lang.String version,
java.lang.String label,
boolean autoManage)
Retrieves a stream from the specified path.
|
ExecutionHandle |
Session.run(Processor[] nodes,
java.util.Collection results)
Executes the supplied array of nodes synchronously and waits for them to complete.
|
ExecutionHandle |
Session.run(ProcessorStream stream,
java.util.Collection results)
Executes the supplied stream synchronously and waits for it to complete.
|
ExecutionHandle |
Session.runTask(Task task)
Executes the supplied task synchronously and waits for it to complete.
|
ExecutionHandle |
Session.spawnPublish(TerminalProcessor node,
boolean inline)
Executes the specified node asynchronously in publish mode to obtain a
PublishedImage ready for inline scoring. |
java.lang.String |
Repository.storeDocument(DocumentOutput documentOutput,
java.lang.String path,
java.lang.String label)
Stores a document output to the specified location.
|
java.lang.String |
Repository.storeModel(ModelOutput modelOutput,
java.lang.String path,
java.lang.String label)
Stores a model output to the specified location.
|
java.lang.String |
Repository.storeProcessor(Processor node,
java.lang.String path,
java.lang.String label)
Stores a node to the specified location.
|
java.lang.String |
Repository.storeStream(ProcessorStream stream,
java.lang.String path,
java.lang.String label)
Stores a stream to the specified location.
|
Modifier and Type | Method and Description |
---|---|
Task |
TaskFactory.createValidateStreamTask(Processor node)
Creates a task that validate a stream and get required fields, the result of the task is
StreamValidationResult , which could be got from task.getResult(). |
void |
TaskRunner.exportDocumentToFile(DocumentOutput documentOutput,
java.lang.String filename,
FileFormat fileFormat)
Exports the stream description to a file using the specified file format.
|
void |
TaskRunner.exportModelSummaryToFile(ModelOutput modelOutput,
java.lang.String filename,
FileFormat fileFormat)
Exports the model summary to a file using the specified file format.
|
void |
TaskRunner.exportModelSummaryToFile(Processor node,
java.lang.String filename,
FileFormat fileFormat)
Exports the model summary in the supplied node to a file using the specified file format.
|
void |
TaskRunner.exportModelToFile(ModelOutput modelOutput,
java.lang.String filename,
FileFormat fileFormat)
Exports the model to a file using the specified file format.
|
void |
TaskRunner.exportModelToFile(Processor node,
java.lang.String filename,
FileFormat fileFormat)
Exports the model in the supplied node to a file using the specified file format.
|
void |
TaskRunner.exportOutputToFile(PropertiedObject object,
java.lang.String filename,
FileFormat fileFormat,
java.util.Map<?,?> options)
Exports the output content from the supplied object to the specified file and format.
|
void |
TaskRunner.exportStreamToFile(ProcessorStream stream,
java.lang.String filename,
FileFormat fileFormat)
Exports the stream description to a file using the specified file format.
|
Processor |
TaskRunner.insertNodeFromFile(java.lang.String filename,
ProcessorDiagram diagram)
Reads and returns a node from the specified file, inserting it into
the supplied diagram.
|
DocumentOutput |
TaskRunner.openDocumentFromFile(java.lang.String filename,
boolean autoManage)
Reads and returns a document from the specified file.
|
ModelOutput |
TaskRunner.openModelFromFile(java.lang.String filename,
boolean autoManage)
Reads and returns a model from the specified file.
|
ProcessorStream |
TaskRunner.openStreamFromFile(java.lang.String filename,
boolean autoManage)
Reads and returns a stream from the specified file.
|
void |
TaskRunner.saveDocumentToFile(DocumentOutput documentOutput,
java.lang.String filename)
Saves the document to the specified file location.
|
void |
TaskRunner.saveModelToFile(ModelOutput modelOutput,
java.lang.String filename)
Saves the model to the specified file location.
|
void |
TaskRunner.saveNodeToFile(Processor node,
java.lang.String filename)
Saves the node to the specified file location.
|
void |
TaskRunner.saveStreamToFile(ProcessorStream stream,
java.lang.String filename)
Saves the stream to the specified file location.
|
Modifier and Type | Method and Description |
---|---|
ExecutionHandle |
Processor.run(java.util.Collection results)
Executes this node synchronously and waits for execution to complete.
|
ExecutionHandle |
ProcessorStream.runAll(java.util.Collection results)
Executes the stream synchronously and waits for it to complete.
|
ExecutionHandle |
CompositeProcessorDiagram.runAll(java.util.Collection results)
Executes the executable nodes within this sub-stream synchronously and waits for it to complete.
|
ExecutionHandle |
ProcessorStream.runScript(java.util.Collection results)
Executes the stream script synchronously and waits for it to complete.
|
ExecutionHandle |
ProcessorStream.runSelected(Processor[] nodes,
java.util.Collection results)
Executes the supplied array of nodes synchronously and waits for them to complete.
|
ExecutionHandle |
CompositeProcessorDiagram.runSelected(Processor[] nodes,
java.util.Collection results)
Executes the supplied array of nodes synchronously and waits for them to complete.
|
Copyright © 2014 Integral Solutions Ltd. All Rights Reserved.