Class OMAGViewServiceRegistration
- java.lang.Object
-
- org.odpi.openmetadata.adminservices.configuration.OMAGViewServiceRegistration
-
public class OMAGViewServiceRegistration extends Object
OMAGViewServiceRegistration provides static methods to enable an view service to dynamically register itself with the OMAG Server. Static methods are needed to be able to get this information to the Admin Services REST API singletons created by Spring.
-
-
Constructor Summary
Constructors Constructor Description OMAGViewServiceRegistration()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ViewServiceRegistrationgetViewServiceRegistration(String urlMarker)Retrieve the requested OMVS registration informationstatic List<ViewServiceRegistration>getViewServiceRegistrationList()Retrieve the list of registered OMVSsstatic voidregisterViewService(ViewServiceRegistration registration)Register OMVS
-
-
-
Method Detail
-
registerViewService
public static void registerViewService(ViewServiceRegistration registration)
Register OMVS- Parameters:
registration- information about the specific OMVS
-
getViewServiceRegistrationList
public static List<ViewServiceRegistration> getViewServiceRegistrationList()
Retrieve the list of registered OMVSs- Returns:
- list of registration info
-
getViewServiceRegistration
public static ViewServiceRegistration getViewServiceRegistration(String urlMarker)
Retrieve the requested OMVS registration information- Parameters:
urlMarker- URL insert that identifies the service- Returns:
- view service registration info
-
-