oracular (3) Wallet::Schema::Result::Type.3pm.gz

Provided by: krb5-wallet-server_1.5-1.1_all bug

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