org.odpi.openmetadata.adminservices.OMAGServerOriginServices Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of admin-services-server Show documentation
Show all versions of admin-services-server Show documentation
Administration Services Server-side
/* SPDX-License-Identifier: Apache 2.0 */
/* Copyright Contributors to the ODPi Egeria project. */
package org.odpi.openmetadata.adminservices;
/**
* 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.3)\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;
}
}