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.InputStreamSaClassicConnector. loadSystemFile(SystemFileKind kind, java.lang.String name)This method loads a system file of a specific kind.java.io.InputStreamSaClassicConnectorImpl. loadSystemFile(SystemFileKind kind, java.lang.String name)voidSaClassicConnector. storeSystemFile(SystemFileKind kind, java.lang.String name, java.io.InputStream data)This method stores a system file of a specific kind.voidSaClassicConnectorImpl. 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.InputStreamSaRMIClientCommand. loadSystemFile(SystemFileKind kind, java.lang.String name)Loads a system file of a specific kind.java.io.InputStreamSaRMIClientCommandImpl. loadSystemFile(SystemFileKind kind, java.lang.String name)Loads a system file of a specific kind.voidSaRMIClientCommand. storeSystemFile(SystemFileKind kind, java.lang.String name, java.io.InputStream data)Stores a system file of a specific kind.voidSaRMIClientCommandImpl. 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 StoreSystemFileOperationStoreSystemFileOperation. 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.voidSaRMIServerCommand. 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 SystemFileKindSystemFileKind. getInstance(int id)Gets the instance matching to the id.static SystemFileKindSystemFileKind. 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.
-