Scroll to navigation

Wallet::Schema::Result::Type(3pm) User Contributed Perl Documentation Wallet::Schema::Result::Type(3pm)

NAME

Wallet::Schema::Result::Type - Wallet schema for object types

DESCRIPTION

This is a normalization table used to constrain the values in other tables. It contains the types of wallet objects that are considered valid, and the modules that govern each.

By default it contains the following entries:

  insert into types (ty_name, ty_class)
      values ('file', 'Wallet::Object::File');
  insert into types (ty_name, ty_class)
      values ('keytab', 'Wallet::Object::Keytab');

If you have extended the wallet to support additional object types , you will want to add additional rows to this table mapping those types to Perl classes that implement the object APIs.

ACCESSORS

ty_name

  data_type: 'varchar'
  is_nullable: 0
  size: 16

ty_class

  data_type: 'varchar'
  is_nullable: 1
  size: 64
2024-08-01 perl v5.38.2