mapl_get Subroutine

public subroutine mapl_get(unusable, directory_service, rc)

Arguments

Type IntentOptional Attributes Name
class(KeywordEnforcer), intent(in), optional :: unusable
type(DirectoryService), intent(out), optional, pointer :: directory_service
integer, intent(out), optional :: rc

Calls

proc~~mapl_get~~CallsGraph proc~mapl_get mapl_get none~get~119 MaplFramework%get proc~mapl_get->none~get~119 proc~mapl_return MAPL_Return proc~mapl_get->proc~mapl_return proc~mapl_verify MAPL_Verify proc~mapl_get->proc~mapl_verify none~get~119->proc~mapl_return interface~mapl_assert MAPL_Assert none~get~119->interface~mapl_assert none~is_initialized~4 MaplFramework%is_initialized none~get~119->none~is_initialized~4 at at proc~mapl_return->at insert insert proc~mapl_return->insert proc~mapl_throw_exception MAPL_throw_exception proc~mapl_return->proc~mapl_throw_exception proc~mapl_verify->proc~mapl_throw_exception

Source Code

   subroutine mapl_get(unusable, directory_service, rc)
      class(KeywordEnforcer), optional, intent(in) :: unusable
      type(DirectoryService), pointer, optional, intent(out) :: directory_service
      integer, optional, intent(out) :: rc

      integer :: status

      call the_mapl_object%get(directory_service=directory_service, _RC)

      _RETURN(_SUCCESS)
       _UNUSED_DUMMY(unusable)
  end subroutine mapl_get