openSEAL Stereotype Reference: <<Service Manager>>

Summary

A Service Manager logically groups one or more Service Method and provides the public API for your business services.

General Characteristics:

  • Interface defining one or more Service Methods

Usage:

Public API for the course-grained business operations.

Example:

using System;
using System.Collections;

using org.openseal.refapp.types;

namespace org.openseal.refapp.business.api
{

    /// 
    /// A simple Service Manager Interface
    /// 
    public interface IHelloWorldService
    {
        /// A Service Method to return a Hello World message.
        HelloWorldType getThyMessage();

    } // end of interface
    
} // end of namespace