The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Elive::StandardV2::SchedulingManager;
use warnings; use strict;

use Mouse;

extends 'Elive::DAO::Singleton','Elive::StandardV2';

use Scalar::Util;

=head1 NAME

Elive::StandardV2::SchedulingManager - Scheduling Manager entity class

=cut

=head1 DESCRIPTION

Gets the scheduling manager (ELM) and version.

=cut

__PACKAGE__->entity_name('SchedulingManager');

=head1 PROPERTIES

=head2 manager (Str)

The name of the Scheduling Server. This will be C<ELM>.

=cut

has 'manager' => (is => 'rw', isa => 'Str');

=head2 version (Str)

The version identification information of ELM. This will include version (e.g., 3.3.0) and revision (e.g., 3368).

=cut

has 'version' => (is => 'rw', isa => 'Str');

=head1 METHODS

=cut

=head2 get

    my $scheduling_manager = Elive::StandardV2::SchedulingManager->get();

Return the scheduling manager details.

=cut

1;