aboutsummaryrefslogtreecommitdiffstats
path: root/upstream/odl-aaa-moon/aaa/aaa-credential-store-api/src/main/yang/credential-model.yang
diff options
context:
space:
mode:
authorRuan HE <ruan.he@orange.com>2016-09-20 06:02:29 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-09-20 06:02:29 +0000
commit08f71b00d61628b35202f4db5844c21ec5881141 (patch)
treed9da5acee4c1409ee9dc53b96fa6482a4cdc70af /upstream/odl-aaa-moon/aaa/aaa-credential-store-api/src/main/yang/credential-model.yang
parentdece47b41cdb7241b2b9d1223f15771d44f1ff69 (diff)
parentcf864337c13b4638c588badf3f589f9e39318c95 (diff)
Merge "Move ODL-AAA-MOON under 'upstream' Directory"
Diffstat (limited to 'upstream/odl-aaa-moon/aaa/aaa-credential-store-api/src/main/yang/credential-model.yang')
-rw-r--r--upstream/odl-aaa-moon/aaa/aaa-credential-store-api/src/main/yang/credential-model.yang47
1 files changed, 47 insertions, 0 deletions
diff --git a/upstream/odl-aaa-moon/aaa/aaa-credential-store-api/src/main/yang/credential-model.yang b/upstream/odl-aaa-moon/aaa/aaa-credential-store-api/src/main/yang/credential-model.yang
new file mode 100644
index 00000000..7d1f55a3
--- /dev/null
+++ b/upstream/odl-aaa-moon/aaa/aaa-credential-store-api/src/main/yang/credential-model.yang
@@ -0,0 +1,47 @@
+/*
+ * Copyright (c) 2015 Hewlett-Packard Development Company, L.P. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+module credential-store {
+ namespace "urn:opendaylight:params:xml:ns:yang:aaa:credential-store";
+ prefix "cs";
+
+ description "Defines and extensible model for storing various types of security credentials.";
+
+ revision "2015-02-26" { description "Initial revision."; }
+
+ identity credential-type {
+ description
+ "Credential base type. All credential types must be derived from this identity.";
+ }
+
+ typedef credential-type-ref {
+ description "reference to an entry in the credential store based on id.";
+ type instance-identifier;
+ }
+
+ container credential-store {
+ list credential {
+ key "id";
+
+ leaf id {
+ description "Unique identifier for this credential entry.";
+ type string;
+ }
+
+ leaf type {
+ description "The type of credential represented in this entry.";
+ type identityref {
+ base credential-type;
+ }
+ }
+
+ choice value {
+ description "Extension point. Contains the data specific to the credential type.";
+ }
+ }
+ }
+}