Class CService

    • Constructor Detail

      • CService

        public CService​(java.lang.String documentation,
                        java.lang.String programName,
                        java.lang.String name,
                        PServiceProvider extendsService,
                        java.util.Collection<CServiceMethod> methods,
                        java.util.Map<java.lang.String,​java.lang.String> annotations)
    • Method Detail

      • getMethods

        @Nonnull
        public java.util.Collection<CServiceMethod> getMethods()
        Description copied from class: PService
        Get the collection of methods for the service, including all inherited services.
        Overrides:
        getMethods in class PService
        Returns:
        The collection of methods.
      • getMethod

        public CServiceMethod getMethod​(java.lang.String name)
        Description copied from class: PService
        Get the method definition for the given method name.
        Specified by:
        getMethod in class PService
        Parameters:
        name - The service method name.
        Returns:
        The service method.
      • getExtendsService

        public CService getExtendsService()
        Description copied from class: PService
        Get the service that this service extends.
        Overrides:
        getExtendsService in class PService
        Returns:
        Extended service or null if none.
      • getMethodsIncludingExtended

        public java.util.Collection<CServiceMethod> getMethodsIncludingExtended()
        Get all methods including methods declared in extended services.
        Returns:
        The list of service methods.
      • hasAnnotation

        public boolean hasAnnotation​(@Nonnull
                                     java.lang.String name)
        Description copied from interface: CAnnotatedDescriptor
        Get the given annotation value.
        Specified by:
        hasAnnotation in interface CAnnotatedDescriptor
        Parameters:
        name - Name of annotation.
        Returns:
        If the annotation is present.
      • getAnnotationValue

        public java.lang.String getAnnotationValue​(@Nonnull
                                                   java.lang.String name)
        Description copied from interface: CAnnotatedDescriptor
        Get the given annotation value.
        Specified by:
        getAnnotationValue in interface CAnnotatedDescriptor
        Parameters:
        name - Name of annotation.
        Returns:
        The annotation value or null.
      • getDocumentation

        public java.lang.String getDocumentation()
        Description copied from interface: CAnnotatedDescriptor
        The type comment is the last block of comment written before the type declaration. Comments on the same line, after the declaration is ignored.
        Specified by:
        getDocumentation in interface CAnnotatedDescriptor
        Returns:
        The comment string containing all formatting (not including the comment delimiter and the leading space.