AtteanX-Endpoint
view release on metacpan or search on metacpan
lib/AtteanX/Endpoint.pm view on Meta::CPAN
package AtteanX::Endpoint {
our $VERSION = "0.002";
}
package AtteanX::Error {
use Moo;
use Types::Standard qw(Str HashRef);
use namespace::clean;
has 'message' => (is => 'ro', isa => Str, required => 1);
has 'details' => (is => 'ro', isa => HashRef, default => sub { +{} });
has 'uri' => (is => 'ro', isa => Str);
}
package AtteanX::Endpoint::Error {
use Moo;
extends 'AtteanX::Error';
use Types::Standard qw(Int);
use namespace::clean;
has 'code' => (is => 'ro', isa => Int, required => 1);
}
lib/AtteanX/Endpoint.pm view on Meta::CPAN
has 'planner' => (
is => 'ro',
isa => ConsumerOf['Attean::API::QueryPlanner'],
required => 1,
default => sub {
Attean::IDPQueryPlanner->new();
}
);
has 'model' => (is => 'ro', isa => ConsumerOf['Attean::API::Model'], required => 1);
has 'conf' => (is => 'ro', isa => HashRef, required => 1);
has 'graph' => (is => 'ro', isa => ConsumerOf['Attean::API::IRI'], required => 1);
sub BUILDARGS {
my $class = shift;
my @params = @_;
my %args;
if (blessed($params[0]) and $params[0]->does('Attean::API::Model')) {
# ->new( $model, \%conf )
$args{ model } = shift @params;
$args{ conf } = shift @params;
( run in 0.371 second using v1.01-cache-2.11-cpan-5f2e87ce722 )