App::CamelPKI::Controller::CA::Template::VPN - Controller for


App-CamelPKI documentation Contained in the App-CamelPKI distribution.

Index


Code Index:

NAME

Top

App::CamelPKI::Controller::CA::Template::VPN - Controller for certification and revocation of VPN nodes.

DESCRIPTION

Top

This class inherits from App::CamelPKI::Controller::CA::Template::Base, which contains all relevant documentation.

METHODS

Top

_list_template_shortnames

Returns the list of the short names of the templates this controller deals with.


App-CamelPKI documentation Contained in the App-CamelPKI distribution.
#!perl -w

package App::CamelPKI::Controller::CA::Template::VPN;

use strict;
use warnings;

use base 'App::CamelPKI::Controller::CA::Template::Base';
use App::CamelPKI::CertTemplate::VPN;

sub _list_template_shortnames { qw(VPN1 OpenVPNServer OpenVPNClient) }

sub _revocation_keys { ("dns", "email") }

sub _form_certify_template { "certificate/VPN_form_certify.tt2" }

sub _form_revoke_template { "certificate/VPN_form_revoke.tt2" }

sub _operations_available { "src/vpn/vpn_welcome.tt2" }

1;