### IXConnection Example Usage Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/IXConnection Demonstrates how to create and use an IXConnection object to interact with the Indexserver. It shows the setup of connection properties, session options, obtaining the service port, creating a connection, checking out a document, and logging out. ```Java Properties props = IXConnFactory.createConnProps(tp.url, 2, 10 * 60); Properties sessOpts = IXConnFactory.createSessionOptions("MyApp", "1.0", ""); connFact = new IXConnFactory(props, sessOpts); IXServicePortC CONST = connFact.getCONST(); IXConnection conn = connFact.create("Fritz", "geheim", "MYPC", null); EditInfo ed = conn.ix.checkoutDoc(docId, null, EditInfoC.mbSordDoc, LockC.NO); ...conn.logout(); ``` -------------------------------- ### Manage ISO Date Start Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/ExportExtOptions Provides methods to get and set the start date in ISO format. This is useful for time-based filtering or data range specifications. ```APIDOC getDateStartIso() - Retrieves the start date in ISO format. - Returns: String - The start date as an ISO formatted string. ``` ```APIDOC setDateStartIso(String dateStartIso) - Sets the start date in ISO format. - Parameters: - dateStartIso: String - The start date to set, expected in ISO format. ``` -------------------------------- ### Import File System Example Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/imfs/ImportFileSystem Demonstrates how to connect to ELO IX, configure import options, and perform a file system import using the ImportFileSystem class. ```java import java.util.Properties; import byps.BSyncResult; import de.elo.ix.client.IXConnFactory; import de.elo.ix.client.IXConnection; public class ImportFileSystemExample { public final static void main(String[] args) { // How to connect to IX String ixUrl = "http://srvtdev03:6020/ix-elo90/ix"; String userName = "Administrator"; String pwd = "elo"; IXConnFactory connFact = null; IXConnection conn = null; try { // Initialize connection properties map. // Allow 100 parallel requests. Properties connProps = IXConnFactory.createConnProps(ixUrl); connProps.put(IXConnFactory.PROP_NB_OF_CNNS, "100"); // Reverse connections (server push functionality) are not required. connProps.put(IXConnFactory.NB_OF_REVERSE_CNNS, "0"); // Initialize session options with application name and version. Properties sessOpts = IXConnFactory.createSessionOptions("import-fs-example", "0.1"); // Connect connFact = new IXConnFactory(connProps, sessOpts); conn = connFact.create(userName, pwd, "import-fs", ""); // Initialize import options. ImportOptions options = new ImportOptions(); options.setSource("H:/temp/mailablage/PSUPPORT/2008"); options.setDestination("/ImportFS/2008-1"); options.setHandleDuplicate(ImportOptions.CREATE_REFERENCE_FOR_DUPLICATE); AccessControlOptions accessControlOptions = new AccessControlOptions(); accessControlOptions.setSkip(true); options.setAccessControlOptions(accessControlOptions); // Callback function (interface) to print import progress on stdout. ProgressCallback progress = (ProgressInfo value) -> { System.out.println(value.toString()); }; // Create the importer object. ImportFileSystem importFS = new ImportFileSystem(ImportFileSystem.IMPORT, conn, options, progress); // Do import. BSyncResult asyncResult = new BSyncResult(); importFS.doImport(asyncResult); // Await finished. ImportResult importResult = asyncResult.getResult(); System.out.println("importResult=" + importResult); } catch (Exception e) { e.printStackTrace(); } finally { if (conn != null) { conn.close(); } if (connFact != null) { connFact.done(); } } } } ``` -------------------------------- ### FindSordsByGuids Constructor with GUID Examples Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/jscript/FindSordsByGuids Demonstrates how to initialize the FindSordsByGuids class using various formats for GUIDs. The constructor accepts a single GUID string, an array of GUID strings, or a table of values where the first column contains GUIDs. It also shows an example of fetching GUIDs from a database query. ```javascript var jsGuids = "(5438E821-C6D2-11E0-3D86-11C04FD62025)"; var jsGuids = ["(5438E821-C6D2-11E0-3D86-11C04FD62025)", "(99E609E1-B259-11CF-BFC7-444553540000)"]; var jsGuids = [["(5438E821-C6D2-11E0-3D86-11C04FD62025)", "ignored"], ["(99E609E1-B259-11CF-BFC7-444553540000)", "ignored"]]; var db = Packages.de.elo.ix.jscript.DBConnection("jdbc/MyDB"); var jsGuids = db.query("select guid from ..."); ``` -------------------------------- ### Forum Elo: Get and Set Feed GUID Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/feed/FeedPost Provides methods to get and set the feed GUID for the Forum Elo entry. Both methods accept or return a String. ```APIDOC getFeedGuid() - Retrieves the feed GUID. - Returns: The String feed GUID. setFeedGuid(String feedGuid) - Sets the feed GUID. - Parameters: - feedGuid: The String feed GUID. ``` -------------------------------- ### MyWireClient Constructor and Methods Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/IXConnFactory.MyWireClient Provides details on initializing the MyWireClient and its core methods. Includes constructor parameters for setting up the client with URL, flags, timeout, and session details, as well as the sendR method for asynchronous message sending with specific timeouts. ```APIDOC MyWireClient: __init__(url: String, flags: int, timeoutSeconds: int, sessionCookie: HttpCookie, threadPool: Executor) Constructs a MyWireClient object for counting requests. Parameters: url: The URL of the index server. flags: Options to be forwarded to byps.BWire. timeoutSeconds: The HTTP connection timeout in seconds. sessionCookie: An optional HttpCookie for the session, or null. threadPool: An optional Executor for the thread pool, or null. sendR(msg: byps.BMessage, asyncResult: byps.BAsyncResult) Sends a message with an infinite read timeout. Description copied from class: byps.BWire. Overrides: sendR in class byps.http.HWireClient. Parameters: msg: The BMessage to send. asyncResult: The BAsyncResult callback for handling the response. ``` -------------------------------- ### Get ZIP GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for ZIP archives. This method returns a String representing the GUID. ```java public String getGUID_ZIP() ``` -------------------------------- ### Package: de.elo.ix.client.webapp Source: https://www.forum.elo.com/javadoc/ix/23/allpackages-index Includes classes for web applications that establish connections to the IndexServer. ```APIDOC Package: de.elo.ix.client.webapp Description: Web applications with IndexServer connection(s). ``` -------------------------------- ### Get Email GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for Email documents. This method returns a String representing the GUID. ```java public String getGUID_EMAIL() ``` -------------------------------- ### Package: de.elo.ix.client.system Source: https://www.forum.elo.com/javadoc/ix/23/allpackages-index Classes for system-level operations and configurations. ```APIDOC Package: de.elo.ix.client.system Description: ``` -------------------------------- ### Get PDF GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for PDF documents. This method returns a String representing the GUID. ```java public String getGUID_PDF() ``` -------------------------------- ### IXConnFactory Constructors Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/IXConnFactory Documentation for the constructors of IXConnFactory, detailing how to initialize the factory with different sets of parameters. ```APIDOC Constructors: - IXConnFactory(String url, String appName, String appVersion): Constructor. - IXConnFactory(Properties props, Properties sessOpts): Constructor. ``` -------------------------------- ### SystemInformation Interface Documentation Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/system/package-summary Provides functions for the AdminConsole to give an overview of the entire system. It offers insights into system status and performance metrics. ```APIDOC SystemInformation: Description: Provides functions for AdminConsole to give an overview over the whole System (e.g. counting documents in store paths or generating user reports). Related Classes: SystemInfo ``` -------------------------------- ### Get Web Dokument GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for Web Dokument. This method returns a String representing the GUID. ```java public String getGUID_WEB_DOKUMENT() ``` -------------------------------- ### Get Bild GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for Bild (Image) documents. This method returns a String representing the GUID. ```java public String getGUID_BILD() ``` -------------------------------- ### PluginService Interface Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/plugin/package-summary This service allows to start and stop OSGi plugins. ```APIDOC PluginService: Description: This service allows to start and stop OSGi plugins. ``` -------------------------------- ### Get Scan Dokument GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for Scan Dokument. This method returns a String representing the GUID. ```java public String getGUID_SCAN_DOKUMENT() ``` -------------------------------- ### IXClientServlet Constructors Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/webapp/servlet/IXClientServlet Documentation for the constructors of the IXClientServlet class. Covers the default constructor and a parameterized constructor used for initializing the servlet with program details. ```APIDOC IXClientServlet: public IXClientServlet() Default-constructor. Before this object can be used, the function initHandler must be called. See Also: - initApplication(String, String, String) - IXClientServlet(String, String, String) public IXClientServlet(String programName, String programVersion, String mainPackage) Constructor. Either the programVersion or the mainPackage parameter should be supplied. If mainPackage is supplied, the programVersion is internally evaluated by using the de.elo.utils.Version class. Parameters: programName: Program name (e.g. used on the status page) programVersion: Program version (e.g. used on the status page) mainPackage: Main package name ``` -------------------------------- ### Workflow GUID Getter and Setter Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/feed/Action Provides functionality to get and set the workflow GUID. getWorkflowGuid() retrieves the GUID, and setWorkflowGuid(String workflowGuid) updates it. ```APIDOC getWorkflowGuid() - Returns the workflow GUID. - Return Type: String setWorkflowGuid(String workflowGuid) - Sets the workflow GUID. - Parameters: - workflowGuid: The new workflow GUID (String). ``` -------------------------------- ### Get Impress GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for Impress documents (e.g., presentations). This method returns a String representing the GUID. ```java public String getGUID_IMPRESS() ``` -------------------------------- ### IXClientServlet Constructors Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/webapp/servlet/IXClientServlet Provides documentation for the constructors of the IXClientServlet class. These constructors are used to initialize the servlet, potentially with program-specific details. ```APIDOC IXClientServlet(): Default-constructor. IXClientServlet(String programName, String programVersion, String mainPackage): Constructor. Parameters: programName: The name of the program. programVersion: The version of the program. mainPackage: The main package of the application. ``` -------------------------------- ### Get Calc GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for Calc documents (e.g., spreadsheets). This method returns a String representing the GUID. ```java public String getGUID_CALC() ``` -------------------------------- ### ImportFileSystem Constructor Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/imfs/ImportFileSystem Initializes the ImportFileSystem with connection details, options, and a progress callback. It can be configured for either import or analyze mode. ```APIDOC public ImportFileSystem(boolean importNotAnalyze, IXConnection conn, ImportOptions options, ProgressCallback progress) Import or analyze file system. Parameters: importNotAnalyze: Either IMPORT or ANALYZE. conn: Indexserver connection. options: Import options. progress: Progress callback function. ``` -------------------------------- ### Get AutoCAD DWF GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for AutoCAD DWF files. This method returns a String representing the GUID. ```java public String getGUID_AUTOCAD_DWF() ``` -------------------------------- ### Package: de.elo.ix.client.config Source: https://www.forum.elo.com/javadoc/ix/23/allpackages-index Classes for configuring the ELO IndexServer client. ```APIDOC Package: de.elo.ix.client.config Description: ``` -------------------------------- ### startExportExt API Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/IXServicePortIF_8 Initiates an extended export process using specific export options. ```APIDOC startExportExt(ClientInfo clientinfo, ExportExtOptions exportextoptions) - Starts an extended export process. - Parameters: - clientinfo: The client information object. - exportextoptions: An object containing extended export options. - Returns: A string indicating the result of the extended export. ``` -------------------------------- ### Get AutoCAD DXF GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for AutoCAD DXF files. This method returns a String representing the GUID. ```java public String getGUID_AUTOCAD_DXF() ``` -------------------------------- ### Java Servlet Lifecycle Methods Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/webapp/servlet/IXClientServlet Documentation for standard Java Servlet lifecycle methods: init, service, and destroy. Includes method signatures, parameters, specified interfaces, overrides, and thrown exceptions. ```APIDOC init(jakarta.servlet.ServletConfig config) Specified by: init in interface jakarta.servlet.Servlet Overrides: init in class jakarta.servlet.GenericServlet Throws: jakarta.servlet.ServletException service(jakarta.servlet.http.HttpServletRequest req, jakarta.servlet.http.HttpServletResponse resp) Overrides: service in class jakarta.servlet.http.HttpServlet Throws: jakarta.servlet.ServletException, IOException destroy() Specified by: destroy in interface jakarta.servlet.Servlet Overrides: destroy in class jakarta.servlet.GenericServlet ``` -------------------------------- ### Get AutoCAD DWG GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for AutoCAD DWG files. This method returns a String representing the GUID. ```java public String getGUID_AUTOCAD_DWG() ``` -------------------------------- ### GUID Management Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/DocVersion Provides methods to get and set the Globally Unique Identifier (GUID) for a document. This includes the getter and setter for the GUID string. ```APIDOC public void setGuid(String guid) - Sets the GUID for the document. - Parameters: - guid: The GUID string. public String getGuid() - Retrieves the GUID for the document. - Returns: The GUID string. ``` -------------------------------- ### Java Application Initialization and Access Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/webapp/servlet/IXClientServlet Methods for initializing and accessing the application context within the Forum Elo framework. Includes setting program details and retrieving the application object. ```APIDOC getApplication() Get application object Returns: Application initApplication(String programName, String programVersion, String mainPackage) Initialize the internally used IXClientServletHandler. Either the programVersion or the mainPackage parameter should be supplied. If mainPackage is supplied, the programVersion is internally evaluated by using the de.elo.utils.Version class. Parameters: programName: Program name (e.g. used on the status page) programVersion: Program version (e.g. used on the status page) mainPackage: Main package name ``` -------------------------------- ### startImport API Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/IXServicePortIF_8 Initiates an import process with client information, a string, an integer, and a long value. ```APIDOC startImport(ClientInfo clientinfo, String s, int i, long l) - Starts an import process. - Parameters: - clientinfo: The client information object. - s: A string parameter. - i: An integer parameter. - l: A long integer parameter. - Returns: An integer representing the outcome of the import. ``` -------------------------------- ### Substitution GUID Management (Java) Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/subs/CheckoutSubstitutionsInfo Provides methods to get and set substitution GUIDs. These methods interact with lists of strings representing substitution GUIDs. ```APIDOC getSubstitutionGuids() - Returns: List - A list of substitution GUIDs. - Description: Retrieves the list of substitution GUIDs associated with the current context. setSubstitutionGuids(List substitutionGuids) - Parameters: - substitutionGuids: List - The list of substitution GUIDs to set. - Description: Sets the list of substitution GUIDs. Replaces any existing list. ``` -------------------------------- ### Package: de.elo.ix.client.webapp.servlet Source: https://www.forum.elo.com/javadoc/ix/23/allpackages-index Provides HttpServlet classes that include IndexServer connections. ```APIDOC Package: de.elo.ix.client.webapp.servlet Description: HttpServlet classes with IndexServer connection(s). ``` -------------------------------- ### Get Draw GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for Draw documents (e.g., vector graphics). This method returns a String representing the GUID. ```java public String getGUID_DRAW() ``` -------------------------------- ### Get Writer GUID - Java Method Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordTypeC Retrieves the GUID for Writer documents (e.g., text documents). This method returns a String representing the GUID. ```java public String getGUID_WRITER() ``` -------------------------------- ### Package: de.elo.ix.client Source: https://www.forum.elo.com/javadoc/ix/23/allpackages-index Contains the core API classes for interacting with the IndexServer. ```APIDOC Package: de.elo.ix.client Description: IndexServer API classes. ``` -------------------------------- ### startWorkFlow API Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/IXServicePortIF_8 Starts a workflow with client information and three string parameters. ```APIDOC startWorkFlow(ClientInfo clientinfo, String s, String s1, String s2) - Starts a workflow. - Parameters: - clientinfo: The client information object. - s, s1, s2: String parameters for workflow initiation. - Returns: void (no return value). ``` -------------------------------- ### Scripting Base GUID Methods Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordC Provides methods to get and set the GUID for the scripting base. ```APIDOC getGUID_SCRIPTING_BASE(): Returns: String - the GUID_SCRIPTING_BASE. setGUID_SCRIPTING_BASE(String GUID_SCRIPTING_BASE): Parameters: - GUID_SCRIPTING_BASE: The GUID_SCRIPTING_BASE to set. ``` -------------------------------- ### Replication Base GUID Methods Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordC Provides methods to get and set the GUID for the replication base. ```APIDOC getGUID_REPLICATION_BASE(): Returns: String - the GUID_REPLICATION_BASE. setGUID_REPLICATION_BASE(String GUID_REPLICATION_BASE): Parameters: - GUID_REPLICATION_BASE: The GUID_REPLICATION_BASE to set. ``` -------------------------------- ### StartAdHocWorkflowInfo Constructors Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/StartAdHocWorkflowInfo Provides documentation for the constructors of the StartAdHocWorkflowInfo class. Includes the default constructor and a copy constructor that takes another StartAdHocWorkflowInfo object. ```APIDOC StartAdHocWorkflowInfo() - Default constructor for creating a new instance of StartAdHocWorkflowInfo. StartAdHocWorkflowInfo(StartAdHocWorkflowInfo rhs) - Copy constructor. Initializes a new instance of StartAdHocWorkflowInfo with properties copied from another instance. - Parameters: - rhs: The StartAdHocWorkflowInfo object to copy properties from. ``` -------------------------------- ### StartWorkflowInfo Class API Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/StartWorkflowInfo Detailed API documentation for the StartWorkflowInfo class, including its fields, constructors, and methods. This class is part of the de.elo.ix.client package and implements Serializable. ```APIDOC Class: de.elo.ix.client.StartWorkflowInfo Description: This class is used as a parameter in the function IXServicePortIF.startWorkFlow2(ClientInfo, String, StartWorkflowInfo). Inheritance: - java.lang.Object - byps.BValueClass - de.elo.ix.client.StartWorkflowInfo Implemented Interfaces: - java.io.Serializable Since: 10.99.999.029 Fields: - protected String flowName Name of the new workflow. - protected String flowOwner The flow owner ID. - protected String templFlowId Name or ID of the workflow template. Fields inherited from class byps.BValueClass: bypsClient, changedMembers, dbHelper, FLAG_SEALED, flags Constructors: - StartWorkflowInfo() Default constructor. - StartWorkflowInfo(de.elo.ix.client.StartWorkflowInfo rhs) Copy constructor. - StartWorkflowInfo(String templFlowId, String flowName) Constructor to initialize with template ID and workflow name. Methods: - String getFlowName() Returns the name of the workflow. - String getFlowOwner() Returns the flow owner ID. - String getTemplFlowId() Returns the name or ID of the workflow template. - void setFlowName(String flowName) Sets the name of the workflow. - void setFlowOwner(String flowOwner) Sets the flow owner ID. - void setTemplFlowId(String templFlowId) Sets the name or ID of the workflow template. - String toString() Returns a string representation of the object. Methods inherited from class byps.BValueClass: getBypsClient, getChangedMembers, getDbHelper, isChangedMember, isSealed, seal, seal, setBypsClient, setChangedMember, setChangedMembers, setDbHelper Methods inherited from class java.lang.Object: clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait ``` -------------------------------- ### Administration Base GUID Methods Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordC Provides methods to get and set the GUID for the administration base. ```APIDOC getGUID_ADMINISTRATION_BASE(): Returns: String - the GUID_ADMINISTRATION_BASE. setGUID_ADMINISTRATION_BASE(String GUID_ADMINISTRATION_BASE): Parameters: - GUID_ADMINISTRATION_BASE: The GUID_ADMINISTRATION_BASE to set. ``` -------------------------------- ### ReportFile Constructor Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/imfs/ReportFile Initializes a new instance of the ReportFile class with specified options. ```APIDOC Constructor: ReportFile(ReportFileOptions options) Constructor. Parameters: options: The ReportFileOptions object configuring the report file. ``` -------------------------------- ### FindSordsByGuids Example Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/jscript/FindObjects Example of using FindObjects to query Sord GUIDs from an external database using JDBC. ```javascript function RF_findSordsByGuids(ec, args) { var db = new Packages.de.elo.ix.jscript.DBConnection( "jdbc/ExternalDatabase" ); var guids = db.query("select objguid from ..."); return new Packages.de.elo.ix.jscript.FindSordsByGuids(guids); } ``` -------------------------------- ### IX Scripting Base GUID Methods Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordC Provides methods to get and set the GUID for the IX scripting base. ```APIDOC getGUID_IX_SCRIPTING_BASE(): Returns: String - the GUID_IX_SCRIPTING_BASE. setGUID_IX_SCRIPTING_BASE(String GUID_IX_SCRIPTING_BASE): Parameters: - GUID_IX_SCRIPTING_BASE: The GUID_IX_SCRIPTING_BASE to set. ``` -------------------------------- ### HostService Interface Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/plugin/package-summary Indexserver provides this interface for OSGi plugins. ```APIDOC HostService: Description: Indexserver provides this interface for OSGi plugins. ``` -------------------------------- ### ImportFileSystemExample Class API Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/imfs/ImportFileSystemExample API documentation for the ImportFileSystemExample class, outlining its constructor and main method. ```APIDOC ImportFileSystemExample Description: Constructs a new ImportFileSystemExample. main(String[] args) Description: Entry point for the application. Parameters: args: Command line arguments ``` -------------------------------- ### SAP Smart Link GUID Methods Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/SordC Provides methods to get and set the GUID for SAP Smart Link. ```APIDOC getGUID_SAP_SMART_LINK(): Returns: String - the GUID_SAP_SMART_LINK. setGUID_SAP_SMART_LINK(String gUID_SAP_SMART_LINK): Parameters: - gUID_SAP_SMART_LINK: The GUID_SAP_SMART_LINK to set by the SAP Module. ``` -------------------------------- ### PackageData GUID Accessor Methods Source: https://www.forum.elo.com/javadoc/ix/23/de/elo/ix/client/PackageData Provides methods to get and set the globally unique identifier (GUID) for the package. ```APIDOC PackageData GUID Methods: setGuid(String guid) Sets the GUID for the package. Parameters: guid: The new GUID string. getGuid(): String Retrieves the GUID of the package. Returns: The package's GUID. ```