aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <rra@stanford.edu>2013-02-27 16:17:01 -0800
committerRuss Allbery <rra@stanford.edu>2013-02-27 16:54:27 -0800
commit82902694563c7b140263e2fb17162f04cdb6cac2 (patch)
tree4c3dcee508a11dadd415a5f09c39b3a8ba774bc4
parent515ae144c16df1fe9b66343ee34c8cc967fd61b6 (diff)
Add standard headers to the Wallet::Schema::* classes
Change-Id: Iee8d55f6c86563fad71d770398e3221f7efb4b2e Reviewed-on: https://gerrit.stanford.edu/852 Reviewed-by: Russ Allbery <rra@stanford.edu> Tested-by: Russ Allbery <rra@stanford.edu>
-rw-r--r--perl/Wallet/Schema.pm8
-rw-r--r--perl/Wallet/Schema/Result/Acl.pm8
-rw-r--r--perl/Wallet/Schema/Result/AclEntry.pm8
-rw-r--r--perl/Wallet/Schema/Result/AclHistory.pm8
-rw-r--r--perl/Wallet/Schema/Result/AclScheme.pm8
-rw-r--r--perl/Wallet/Schema/Result/Enctype.pm8
-rw-r--r--perl/Wallet/Schema/Result/Flag.pm8
-rw-r--r--perl/Wallet/Schema/Result/KeytabEnctype.pm8
-rw-r--r--perl/Wallet/Schema/Result/KeytabSync.pm8
-rw-r--r--perl/Wallet/Schema/Result/Object.pm8
-rw-r--r--perl/Wallet/Schema/Result/ObjectHistory.pm8
-rw-r--r--perl/Wallet/Schema/Result/SyncTarget.pm8
-rw-r--r--perl/Wallet/Schema/Result/Type.pm8
13 files changed, 104 insertions, 0 deletions
diff --git a/perl/Wallet/Schema.pm b/perl/Wallet/Schema.pm
index 6868876..fc63447 100644
--- a/perl/Wallet/Schema.pm
+++ b/perl/Wallet/Schema.pm
@@ -1,3 +1,11 @@
+# Database schema and connector for the wallet system.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema;
use strict;
diff --git a/perl/Wallet/Schema/Result/Acl.pm b/perl/Wallet/Schema/Result/Acl.pm
index 7fe395b..226738a 100644
--- a/perl/Wallet/Schema/Result/Acl.pm
+++ b/perl/Wallet/Schema/Result/Acl.pm
@@ -1,3 +1,11 @@
+# Wallet schema for an ACL.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::Acl;
use strict;
diff --git a/perl/Wallet/Schema/Result/AclEntry.pm b/perl/Wallet/Schema/Result/AclEntry.pm
index a5ae5fa..a33a98c 100644
--- a/perl/Wallet/Schema/Result/AclEntry.pm
+++ b/perl/Wallet/Schema/Result/AclEntry.pm
@@ -1,3 +1,11 @@
+# Wallet schema for an entry in an ACL.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::AclEntry;
use strict;
diff --git a/perl/Wallet/Schema/Result/AclHistory.pm b/perl/Wallet/Schema/Result/AclHistory.pm
index cc3978b..d3ef901 100644
--- a/perl/Wallet/Schema/Result/AclHistory.pm
+++ b/perl/Wallet/Schema/Result/AclHistory.pm
@@ -1,3 +1,11 @@
+# Wallet schema for ACL history.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::AclHistory;
use strict;
diff --git a/perl/Wallet/Schema/Result/AclScheme.pm b/perl/Wallet/Schema/Result/AclScheme.pm
index 8f76530..91a58b2 100644
--- a/perl/Wallet/Schema/Result/AclScheme.pm
+++ b/perl/Wallet/Schema/Result/AclScheme.pm
@@ -1,3 +1,11 @@
+# Wallet schema for ACL scheme.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::AclScheme;
use strict;
diff --git a/perl/Wallet/Schema/Result/Enctype.pm b/perl/Wallet/Schema/Result/Enctype.pm
index ca54de5..5733669 100644
--- a/perl/Wallet/Schema/Result/Enctype.pm
+++ b/perl/Wallet/Schema/Result/Enctype.pm
@@ -1,3 +1,11 @@
+# Wallet schema for Kerberos encryption type.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::Enctype;
use strict;
diff --git a/perl/Wallet/Schema/Result/Flag.pm b/perl/Wallet/Schema/Result/Flag.pm
index 9b98da9..e223ff8 100644
--- a/perl/Wallet/Schema/Result/Flag.pm
+++ b/perl/Wallet/Schema/Result/Flag.pm
@@ -1,3 +1,11 @@
+# Wallet schema for object flags.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::Flag;
use strict;
diff --git a/perl/Wallet/Schema/Result/KeytabEnctype.pm b/perl/Wallet/Schema/Result/KeytabEnctype.pm
index 3de620f..daea724 100644
--- a/perl/Wallet/Schema/Result/KeytabEnctype.pm
+++ b/perl/Wallet/Schema/Result/KeytabEnctype.pm
@@ -1,3 +1,11 @@
+# Wallet schema for keytab enctype.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::KeytabEnctype;
use strict;
diff --git a/perl/Wallet/Schema/Result/KeytabSync.pm b/perl/Wallet/Schema/Result/KeytabSync.pm
index 77ee23d..ca84277 100644
--- a/perl/Wallet/Schema/Result/KeytabSync.pm
+++ b/perl/Wallet/Schema/Result/KeytabSync.pm
@@ -1,3 +1,11 @@
+# Wallet schema for keytab synchronization.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::KeytabSync;
use strict;
diff --git a/perl/Wallet/Schema/Result/Object.pm b/perl/Wallet/Schema/Result/Object.pm
index 7f59d27..fd64e1b 100644
--- a/perl/Wallet/Schema/Result/Object.pm
+++ b/perl/Wallet/Schema/Result/Object.pm
@@ -1,3 +1,11 @@
+# Wallet schema for an object.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::Object;
use strict;
diff --git a/perl/Wallet/Schema/Result/ObjectHistory.pm b/perl/Wallet/Schema/Result/ObjectHistory.pm
index df0a7df..9cbb159 100644
--- a/perl/Wallet/Schema/Result/ObjectHistory.pm
+++ b/perl/Wallet/Schema/Result/ObjectHistory.pm
@@ -1,3 +1,11 @@
+# Wallet schema for object history.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::ObjectHistory;
use strict;
diff --git a/perl/Wallet/Schema/Result/SyncTarget.pm b/perl/Wallet/Schema/Result/SyncTarget.pm
index 27174f5..4300a54 100644
--- a/perl/Wallet/Schema/Result/SyncTarget.pm
+++ b/perl/Wallet/Schema/Result/SyncTarget.pm
@@ -1,3 +1,11 @@
+# Wallet schema for synchronization targets.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::SyncTarget;
use strict;
diff --git a/perl/Wallet/Schema/Result/Type.pm b/perl/Wallet/Schema/Result/Type.pm
index 5b2e1d0..748a8a8 100644
--- a/perl/Wallet/Schema/Result/Type.pm
+++ b/perl/Wallet/Schema/Result/Type.pm
@@ -1,3 +1,11 @@
+# Wallet schema for object types.
+#
+# Written by Jon Robertson <jonrober@stanford.edu>
+# Copyright 2012, 2013
+# The Board of Trustees of the Leland Stanford Junior University
+#
+# See LICENSE for licensing terms.
+
package Wallet::Schema::Result::Type;
use strict;