Uses of Class
com.saperion.settings.SystemFileKind
-
Packages that use SystemFileKind Package Description com.saperion.connector This package contains the main classic connector classes.com.saperion.connector.rmi Package for connector RMI client classes.com.saperion.operations This package defines the different operations, that can be invoked by rmi.com.saperion.rmi.common This package contains the classes for the LARIX RMI Server.com.saperion.settings Package for navigation component classes. -
-
Uses of SystemFileKind in com.saperion.connector
Methods in com.saperion.connector with parameters of type SystemFileKind Modifier and Type Method Description java.util.List<java.lang.String>
SaClassicConnector. getSystemFiles(SystemFileKind kind, java.lang.String filter)
This method returns the names of all system files of a specific kind.java.util.List<java.lang.String>
SaClassicConnectorImpl. getSystemFiles(SystemFileKind kind, java.lang.String filter)
java.io.InputStream
SaClassicConnector. loadSystemFile(SystemFileKind kind, java.lang.String name)
This method loads a system file of a specific kind.java.io.InputStream
SaClassicConnectorImpl. loadSystemFile(SystemFileKind kind, java.lang.String name)
void
SaClassicConnector. storeSystemFile(SystemFileKind kind, java.lang.String name, java.io.InputStream data)
This method stores a system file of a specific kind.void
SaClassicConnectorImpl. storeSystemFile(SystemFileKind kind, java.lang.String name, java.io.InputStream data)
-
Uses of SystemFileKind in com.saperion.connector.rmi
Methods in com.saperion.connector.rmi with parameters of type SystemFileKind Modifier and Type Method Description java.util.List<java.lang.String>
SaRMIClientCommand. getSystemFiles(SystemFileKind kind, java.lang.String filter)
Gets the system files of a specific kind.java.util.List<java.lang.String>
SaRMIClientCommandImpl. getSystemFiles(SystemFileKind kind, java.lang.String filter)
Gets the system files of a specific kind.java.io.InputStream
SaRMIClientCommand. loadSystemFile(SystemFileKind kind, java.lang.String name)
Loads a system file of a specific kind.java.io.InputStream
SaRMIClientCommandImpl. loadSystemFile(SystemFileKind kind, java.lang.String name)
Loads a system file of a specific kind.void
SaRMIClientCommand. storeSystemFile(SystemFileKind kind, java.lang.String name, java.io.InputStream data)
Stores a system file of a specific kind.void
SaRMIClientCommandImpl. storeSystemFile(SystemFileKind kind, java.lang.String name, java.io.InputStream data)
Stores a system file of a specific kind. -
Uses of SystemFileKind in com.saperion.operations
Methods in com.saperion.operations with parameters of type SystemFileKind Modifier and Type Method Description static StoreSystemFileOperation
StoreSystemFileOperation. newInstance(java.lang.String name, java.io.InputStream stream, SystemFileKind fileKind)
Constructors in com.saperion.operations with parameters of type SystemFileKind Constructor Description StoreSystemFileOperation(java.lang.String name, byte[] data, SystemFileKind fileKind)
-
Uses of SystemFileKind in com.saperion.rmi.common
Methods in com.saperion.rmi.common with parameters of type SystemFileKind Modifier and Type Method Description java.util.List<java.lang.String>
SaRMIServerCommand. getSystemFiles(int clientToken, SystemFileKind kind, java.lang.String filter)
Gets the system files of a specific kind.byte[]
SaRMIServerCommand. loadSystemFile(int clientToken, SystemFileKind kind, java.lang.String name)
Loads a system file of a specific kind.void
SaRMIServerCommand. storeSystemFile(int clientToken, SystemFileKind kind, java.lang.String name, byte[] data)
Stores a system file of a specific kind. -
Uses of SystemFileKind in com.saperion.settings
Methods in com.saperion.settings that return SystemFileKind Modifier and Type Method Description static SystemFileKind
SystemFileKind. getInstance(int id)
Gets the instance matching to the id.static SystemFileKind
SystemFileKind. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SystemFileKind[]
SystemFileKind. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-