All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.odpi.openmetadata.adminservices.server.OMAGServerOriginServices Maven / Gradle / Ivy

There is a newer version: 5.0
Show newest version
/* SPDX-License-Identifier: Apache 2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.adminservices.server;

/**
 * OMAGServerPlatformOriginServices support the origin services for Egeria's OMAG Server.  It is overridden in
 * other server implementations.
 */
public class OMAGServerOriginServices
{
    final String   implementationOrigin = "Egeria OMAG Server Platform (version 3.15)\n";

    /**
     * Return the origin of this server implementation.
     *
     * @param userId name of the user making the request
     * @return String description
     */
    public String getServerOrigin(String    userId)
    {
        return implementationOrigin;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy