svn commit: r489927 - in head: . net-mgmt net-mgmt/midpoint net-mgmt/midpoint/files

Kurt Jaeger pi at FreeBSD.org
Thu Jan 10 22:43:31 UTC 2019


Author: pi
Date: Thu Jan 10 22:43:28 2019
New Revision: 489927
URL: https://svnweb.freebsd.org/changeset/ports/489927

Log:
  New port: net-mgmt/midpoint
  
  Midpoint is a comprehensive identity management and identity
  governance system. It is basically an complex integration tool
  that can replicate and transform user records between numerous user
  databases, management of the records, reporting, auditing and so
  on. It allows very complex transformation and replication rules
  including support for advanced RBAC and scripting. Its internal
  mechanisms are based on state-of-the art concepts that are still
  not yet widely used in the fieldof Identity Management.
  
  WWW: https://evolveum.com/midpoint/
  
  PR:		231766
  Submitted by:	Matthias Wolf <freebsd at rheinwolf.de>

Added:
  head/net-mgmt/midpoint/
  head/net-mgmt/midpoint/Makefile   (contents, props changed)
  head/net-mgmt/midpoint/distinfo   (contents, props changed)
  head/net-mgmt/midpoint/files/
  head/net-mgmt/midpoint/files/midpoint.in   (contents, props changed)
  head/net-mgmt/midpoint/pkg-descr   (contents, props changed)
  head/net-mgmt/midpoint/pkg-plist   (contents, props changed)
Modified:
  head/GIDs
  head/UIDs
  head/net-mgmt/Makefile

Modified: head/GIDs
==============================================================================
--- head/GIDs	Thu Jan 10 21:57:33 2019	(r489926)
+++ head/GIDs	Thu Jan 10 22:43:28 2019	(r489927)
@@ -822,7 +822,7 @@ _geodns:*:853:
 # free: 879
 # free: 880
 # free: 881
-# free: 882
+midpoint:*:882:
 ipfs-go:*:883:
 telegraf:*:884:
 tcpdump:*:885:

Modified: head/UIDs
==============================================================================
--- head/UIDs	Thu Jan 10 21:57:33 2019	(r489926)
+++ head/UIDs	Thu Jan 10 22:43:28 2019	(r489927)
@@ -828,7 +828,7 @@ archiva:*:871:871::0:0:Apache Archiva Daemon:/nonexist
 # free: 879
 # free: 880
 # free: 881
-# free: 882
+midpoint:*:882:882::0:0:midPoint user:/var/db/midpoint:/usr/sbin/nologin
 ipfs-go:*:883:883::0:0:ipfs-go user:/var/db/ipfs-go:/bin/sh
 telegraf:*:884:884::0:0:telegraf user:/nonexistent:/usr/sbin/nologin
 tcpdump:*:885:885::0:0:tcpdump user:/nonexistent:/usr/sbin/nologin

Modified: head/net-mgmt/Makefile
==============================================================================
--- head/net-mgmt/Makefile	Thu Jan 10 21:57:33 2019	(r489926)
+++ head/net-mgmt/Makefile	Thu Jan 10 22:43:28 2019	(r489927)
@@ -126,6 +126,7 @@
     SUBDIR += mbrowse
     SUBDIR += mdata-client
     SUBDIR += metronome
+    SUBDIR += midpoint
     SUBDIR += mk-livestatus
     SUBDIR += monitoring-plugins
     SUBDIR += mrtg

Added: head/net-mgmt/midpoint/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/midpoint/Makefile	Thu Jan 10 22:43:28 2019	(r489927)
@@ -0,0 +1,63 @@
+# $FreeBSD$
+
+PORTNAME=	midpoint
+PORTVERSION=	3.9
+CATEGORIES=	net-mgmt java
+MASTER_SITES=	http://evolveum.com/downloads/${PORTNAME}/${PORTVERSION}/
+DISTNAME=	${PORTNAME}-${PORTVERSION}-dist
+
+MAINTAINER=	freebsd at rheinwolf.de
+COMMENT=	Identity management and identity governance system
+
+LICENSE=	APACHE20 CDDL MIT LGPL3 AMS AREV BITSTREAM
+LICENSE_COMB=	multi
+LICENSE_NAME_AMS=	AMSFonts Copyright version 2.2
+LICENSE_NAME_AREV=	Arev Fonts Copyright
+LICENSE_NAME_BITSTREAM=	Bitstream Vera Fonts Copyright
+LICENSE_FILE=	${WRKSRC}/NOTICE
+LICENSE_PERMS_AMS=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
+LICENSE_PERMS_AREV=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
+LICENSE_PERMS_BITSTREAM=dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
+
+USE_RC_SUBR=	midpoint
+
+USE_JAVA=	yes
+JAVA_VERSION=	1.8+
+JAVA_OS=	native
+JAVA_VENDOR=	openjdk oracle
+JAVA_RUN=	yes
+
+SUB_LIST+=	PORTNAME=${PORTNAME} USERS=${USERS} GROUPS=${GROUPS} JAVA=${JAVA}
+
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
+
+NO_BUILD=	yes
+NO_ARCH=	yes
+
+USERS=		midpoint
+GROUPS=		midpoint
+
+OPTIONS_DEFINE=	DOCS EXAMPLES
+OPTIOS_SUB=	yes
+
+post-patch:
+	${RM} "${WRKSRC}/doc/samples/mvnw"*
+	${RM} -r "${WRKSRC}/doc/samples/maven"
+
+do-install:
+	${MKDIR} ${STAGEDIR}${JAVASHAREDIR}/${PORTNAME}
+	${MKDIR} ${STAGEDIR}${JAVASHAREDIR}/icf-connectors
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+	${MKDIR} ${STAGEDIR}/var/db/${PORTNAME}
+	${MKDIR} ${STAGEDIR}/var/log/${PORTNAME}
+	${MKDIR} ${STAGEDIR}/var/run/${PORTNAME}
+	${CP} ${WRKSRC}/lib/midpoint.war ${STAGEDIR}${JAVASHAREDIR}/${PORTNAME}
+	${LN} -sf /var/log/${PORTNAME} ${STAGEDIR}/var/db/${PORTNAME}/log
+	${LN} -sf ${JAVAJARDIR} ${STAGEDIR}/var/db/${PORTNAME}/lib
+	${LN} -sf ${JAVASHAREDIR}/icf-connectors ${STAGEDIR}/var/db/${PORTNAME}/icf-connectors
+	(cd ${WRKSRC} && ${COPYTREE_SHARE} "INSTALL NEWS NOTICE README RELEASE-NOTES" ${STAGEDIR}${DOCSDIR})
+	(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} "config schema" ${STAGEDIR}${DOCSDIR})
+	(cd ${WRKSRC}/doc/samples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
+
+.include <bsd.port.mk>

Added: head/net-mgmt/midpoint/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/midpoint/distinfo	Thu Jan 10 22:43:28 2019	(r489927)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1547155980
+SHA256 (midpoint-3.9-dist.tar.gz) = 047d12004f317b403319ee10c994bce6ee04f9d7bf5b5666b5968278eaef6686
+SIZE (midpoint-3.9-dist.tar.gz) = 232464544

Added: head/net-mgmt/midpoint/files/midpoint.in
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/midpoint/files/midpoint.in	Thu Jan 10 22:43:28 2019	(r489927)
@@ -0,0 +1,39 @@
+#!/bin/sh
+
+# $FreeBSD$
+#
+# PROVIDE: midpoint
+# REQUIRE: LOGIN
+# KEYWORD: shutdown
+#
+# Add these lines to /etc/rc.conf.local or /etc/rc.conf
+# to enable this service:
+#
+# midpoint_enable (bool):	Set to NO by default.
+#				Set it to YES to enable midpoint.
+# midpoint_home (path):		Set to /var/db/midpoint by default.
+#
+
+. /etc/rc.subr
+
+name=midpoint
+rcvar=midpoint_enable
+desc="Identity management and identity governance system"
+
+load_rc_config $name
+
+: ${midpoint_enable:=NO}
+: ${midpoint_user:=%%USERS%%}
+: ${midpoint_group:=%%GROUPS%%}
+: ${midpoint_home:=/var/db/%%PORTNAME%%}
+: ${midpoint_javaopts="-Djava.awt.headless=true -Xms2048M -Xmx2048M"}
+: ${midpoint_loggingmanager:=org.apache.juli.ClassLoaderLogManager}
+
+javaopts="-Djava.util.logging.manager=${midpoint_loggingmanager} ${midpoint_javaopts} -Dpython.cachedir=${midpoint_home}/tmp -Djavax.net.ssl.trustStore=${midpoint_home}/keystore.jceks -Djavax.net.ssl.trustStoreType=jceks -Dmidpoint.home=${midpoint_home}"
+
+pidfile=/var/run/%%PORTNAME%%/%%PORTNAME%%.pid
+procname=%%JAVA%%
+command=/usr/sbin/daemon
+command_args="-f -p ${pidfile} -o /var/log/%%PORTNAME%%/%%PORTNAME%%.out -t %%PORTNAME%% %%JAVA%% ${javaopts} -jar %%JAVASHAREDIR%%/%%PORTNAME%%/midpoint.war"
+
+run_rc_command "$1"

Added: head/net-mgmt/midpoint/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/midpoint/pkg-descr	Thu Jan 10 22:43:28 2019	(r489927)
@@ -0,0 +1,10 @@
+Midpoint is a comprehensive identity management and identity
+governance system. It is basically an complex integration tool
+that can replicate and transform user records between numerous user
+databases, management of the records, reporting, auditing and so
+on. It allows very complex transformation and replication rules
+including support for advanced RBAC and scripting. Its internal
+mechanisms are based on state-of-the art concepts that are still
+not yet widely used in the fieldof Identity Management.
+
+WWW: https://evolveum.com/midpoint/

Added: head/net-mgmt/midpoint/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net-mgmt/midpoint/pkg-plist	Thu Jan 10 22:43:28 2019	(r489927)
@@ -0,0 +1,820 @@
+%%DOCSDIR%%/INSTALL
+%%DOCSDIR%%/NEWS
+%%DOCSDIR%%/NOTICE
+%%DOCSDIR%%/README
+%%DOCSDIR%%/RELEASE-NOTES
+%%PORTDOCS%%%%DOCSDIR%%/config/eclipse/codetemplates.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/eclipse/formatter-profile-midpoint.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/000-system-configuration.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/010-value-policy.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/015-security-policy.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/030-role-superuser.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/040-role-enduser.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/041-role-approver.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/042-role-reviewer.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/043-role-delegator.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/050-user-administrator.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/060-task-cleanup.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/070-task-validity.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/080-task-trigger.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/090-report-audit.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/100-report-reconciliation.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/110-report-user-list.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/130-report-certification-definitions.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/140-report-certification-campaigns.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/150-report-certification-cases.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/160-report-certification-decisions.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/200-lookup-languages.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/210-lookup-locales.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/220-lookup-timezones.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/230-lookup-lifecycle-state.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/initial-objects/240-lookup-state.xml
+%%PORTDOCS%%%%DOCSDIR%%/config/rest/index.html
+%%PORTDOCS%%%%DOCSDIR%%/config/rest/swagger.yml
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/h2-3.8-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/h2-3.9-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/h2-upgrade-3.8-3.9.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/mysql-3.8-all-utf8mb4.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/mysql-3.8-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/mysql-3.9-all-utf8mb4.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/mysql-3.9-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/mysql-upgrade-3.8-3.9-utf8mb4.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/mysql-upgrade-3.8-3.9.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/oracle-3.8-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/oracle-3.9-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/oracle-upgrade-3.8-3.9.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/postgresql-3.8-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/postgresql-3.9-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/postgresql-upgrade-3.8-3.9.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/sqlserver-3.8-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/sqlserver-3.9-all.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/_all/sqlserver-upgrade-3.8-3.9.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.h2.create.engine.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.h2.create.history.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.h2.create.identity.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.mssql.create.engine.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.mssql.create.history.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.mssql.create.identity.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.mysql.create.engine.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.mysql.create.history.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.mysql.create.identity.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.oracle.create.engine.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.oracle.create.history.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.oracle.create.identity.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.postgres.create.engine.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.postgres.create.history.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/activiti/activiti.postgres.create.identity.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/midpoint/3.8/h2/h2-3.8.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/midpoint/3.8/mysql/mysql-3.8-utf8mb4.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/midpoint/3.8/mysql/mysql-3.8.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/midpoint/3.8/oracle/oracle-3.8.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/midpoint/3.8/postgresql/postgresql-3.8.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/midpoint/3.8/sqlserver/sqlserver-3.8.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/quartz/tables_h2.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/quartz/tables_mysql_innodb.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/quartz/tables_oracle.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/quartz/tables_postgres.sql
+%%PORTDOCS%%%%DOCSDIR%%/config/sql/quartz/tables_sqlServer.sql
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/annotation-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/api-types-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/audit-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/common-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/common-case-management-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/common-certification-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/common-core-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/common-model-context-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/common-notifications-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/common-policy-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/common-workflows-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/common/fault-3.wsdl
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/connector/icf-1/connector-extension-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/connector/icf-1/connector-schema-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/connector/icf-1/resource-schema-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/gui/admin-1.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/model/extension-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/model/model-3.wsdl
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/model/scripting/extension-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/model/scripting/scripting-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/query-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/report/extension-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/report/report-3.wsdl
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/resource/annotation-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/resource/capabilities-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/task/extension-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/task/jdbc-ping-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/task/noop-3.xsd
+%%PORTDOCS%%%%DOCSDIR%%/schema/xml/ns/public/types-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/2/create-table-crm.sql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/2/create-table-portal.sql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/2/hr.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/2/resource-crm.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/2/resource-csv-hr-bare.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/2/resource-csv-hr.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/2/resource-openldap-minimal.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/2/resource-openldap.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/2/resource-portal.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/4/resource-openldap.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/hr.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/ldap-ideal.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/ldap-ideal.ldif.log
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/ldap-real.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/ldap-real.ldif.log
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/resource-csv-hr.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/resource-openldap.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/task-hr-import.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/task-hr-livesync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/book/5/task-hr-recon.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bulk/assignRoleWithActivationToUser.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bulk/assignRoleWithActivationToUser.yaml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/bulk/assignRoleWithActivationToUsersWithSequences.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/def-all-user-assignments-with-escalation.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/def-all-user-assignments.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/def-all-user-assignments.yaml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/def-role-inducements.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/sod/a-test-2a.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/sod/a-test-2b.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/sod/a-test-2c.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/sod/a-test-3a.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/sod/a-test-3b.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/sod/a-test-3x.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/sod/a-test-3y.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/sod/sod-certification.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/sod/user-jack.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/start-all-user-assignments.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/certification/start-role-inducements.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/object-template-org-GenSync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/object-template-role-GenSync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/object-template-user-GenSync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/objectTemplate-SystemConfiguration-after-logging-GenSync.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/org-top-GenSync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/resource-GenSync-CSV.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/resource-GenSync-OpenDJ.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/resource-GenSync-addressbook.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/role-gensync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/role-meta-replicated-org-GenSync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/role-meta-responsibility-GenSync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-generic synchronization/schema-extension-GenSync.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/object-template-org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/object-template-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/org-customers.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/org-extern.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/resource-csv-source.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/resource-csv-target.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/resource-csv-xxx.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/resource-ldap-opendj.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/resource-ldap-openldap.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/role-basic.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/role-boss.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/role-gold.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/role-meta-customer-project.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/role-meta-customer.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo-rs/role-meta-project.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/PageBase.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/PageLogin.html
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/aci.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/addressbook-schema.sql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/addressbook.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/example-base-only.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/exportPhpLdapAdminDemo2.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/exportPhpLdapAdminDemo3.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/extension-electra.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/groupPainters-permissions.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/groups.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/hr.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/leonardo.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/library.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/lookup-empl-type.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/opendj.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/openldap.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/orgs-metaRole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/orgs-objectTemplate.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/orgs-objectType.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/orgs.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/password-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/projects-metaRole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/projects-objectType.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/projects.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/role-contractor.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/role-fte.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/role-patron.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/demo/user-template.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/evolveum-net.aci
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/evolveum-net.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/gdpr.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/hr.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/midpoint.schema
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/object-template-org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/object-template-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/org-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/posixgroups.aci
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/posixgroups.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/resource-hr.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/resource-openldap.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/role-catalog.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/role-meta-functional.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/role-meta-project.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/roles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/security-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/system-configuration.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/evolveum/value-policy-nonce.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/forms/form-post-authentication.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/forms/form-registration.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/forms/form-reset-password.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/accounts.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/groups.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/accessCertificationDefinitions/access-certification-definition.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/objectTemplates/object-template-create-org-struct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/objectTemplates/object-template-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/orgs/org-hogwarts.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/orgs/org-minister-of-magic.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/orgs/org-quiddich-griffindor.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/orgs/org-quiddich-hufflepuff.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/orgs/org-quiddich-ravenclaw.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/orgs/org-quiddich-slytherin.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/orgs/org-quiddich-teams.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/resources/resource-csv.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/resources/resource-openldap.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-approver.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-duelling-classromm-access.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-end-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-herbology-teacher.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-ldap.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-manager-full-control.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-meta-ldap-group.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-owner.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-policy-rule-sod.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-policy-rule.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-potions-teacher.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-transfiguration-defense-against-dark.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/roles/role-transfiguration-teacher.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/systemConfiguration/system-configuration.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/hogwarts/objects/users/user-fudge.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jmx/jmxremote.access
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/jmx/jmxremote.password
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/json/user-jack.json
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/change-notification-1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/changetype-1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/changetype-extension-1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/custom-columns.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/initial-syslog-logback.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/objectmodification-jack-1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/org-monkey-island-complex-experiment.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/query-1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/query-2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/misc/query-3.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample.sln
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample.v11.suo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/App.config
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/ModelClientSample.csproj
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Program.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Properties/AssemblyInfo.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Properties/Settings.Designer.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Properties/Settings.settings
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.ObjectDeltaOperationType.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.ObjectListType.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.ObjectType1.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.OperationResultType.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.SingleScriptOutputType.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.TaskType.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.UserType.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.executeChangesResponse.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.executeScriptsResponse.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.findShadowOwnerResponse.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.getObjectResponse.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/ModelClientSample.midpointModelService.searchObjectsResponse.datasource
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/Reference.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/Reference.svcmap
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/XMLSchema.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/annotation-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/api-types-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/capabilities-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/common-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/configuration.svcinfo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/configuration91.svcinfo
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/connector-schema-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/fault.wsdl
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/model-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/model-31.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/model.wsdl
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/query-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/resource-schema-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/scripting-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/types-3.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/Service References/midpointModelService/xenc-schema.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/WsSecurityHeaders.cs
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/model-client-sample-dotnet/ModelClientSample/ModelClientSample/user-lechuck.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/account-jack.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/connector-dbtable.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/connector-host-localhost.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/custom-notifications.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/extended-notifications.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/full-text-search.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/function-library-mail-templates.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/lookup-employee-type.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/lookup-languages-all.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/lookup-languages.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/lookup-role-types.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/object-template-action.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/object-template-default.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/object-template-org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/object-template-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/object-template-user-nickname.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/object-template-user-structured.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/object-template-user-target.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/object-template-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/security-policy-lockout.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/security-policy-password.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/security-policy-security-questions.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/sequence0-99.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/simple-notifications.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/system-configuration-multilanguage-notifier.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/user-ceresnickova.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/user-jack-with-password-no-oid.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/user-jack-with-password.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/user-jack.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/user-template-complex.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/users-of-low-moral-fiber.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/users_view_collection.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/objects/users_view_configuration.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/org/org-monkey-island-simple.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/org/org-top.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/policy/meta/policies-meta-approval.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/policy/security/security-policy-hashing.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/policy/value-policy/alphanumeric-password-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/policy/value-policy/complex-password-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/policy/value-policy/numeric-pin-first-nonzero-all-unique-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/policy/value-policy/numeric-pin-first-nonzero-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/policy/value-policy/numeric-pin-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/policy/value-policy/password-policy-ad.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/policy/value-policy/permissive-password-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reports/logins-in-last-24-hours.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reports/report-user-list-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reports/report-work-items.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/reports/report-workflow.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/389ds/389ds-legacy-connector.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/389ds/389ds-localhost-medium.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ad-ldap/ad-ldap-medusa-exchange.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ad-ldap/ad-ldap-medusa-medium.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ad/ad-resource-advanced-nosync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ad/ad-resource-advanced-sync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ad/ad-resource-groups-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ad/ad-resource-groups-basic.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ad/ad-resource-groups-medusa-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ad/ad-resource-simple.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ad/exchange-resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/admin-of-group-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/box-connector-resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/box-folder-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/box-group-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/box-user-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/co-owner-of-folder-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/editor-of-folder-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/folders-orgUnits.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/folders-template.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/group-template.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/groups-orgUnits.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/member-of-group-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/previewer-of-folder-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/previewerUploader-of-folder-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/uploader-of-folder-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/user-template.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/viewer-of-folder-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/box/viewerUploader-of-folder-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/cmd/CreateScript.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/cmd/SearchScript.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/cmd/TestScript.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/cmd/UpdateScript.sh
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/cmd/localhost-cmd-advanced-nosync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/coupa/coupa-resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csv/midpoint-groups.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csv/midpoint-guid.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csv/midpoint-username.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csv/resource-csv-groups.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csv/resource-csv-guid.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csv/resource-csv-username.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csv/role-csvfile-groups-account.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csv/role-csvfile-groups-basic-groups.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/HR-csvfile-resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/README
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-medium.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-advanced-multi-nosync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-advanced-nosync-2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-advanced-nosync-3.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-advanced-nosync-4.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-advanced-nosync-5.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-advanced-nosync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-advanced-sync-2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-advanced-sync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-bulk-action.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-import.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-simple-remote.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/localhost-csvfile-resource-simple.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-HR.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-flatfile-2.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-flatfile-3.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-flatfile-4.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-flatfile-5.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-flatfile-bulk-action.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-flatfile-multi.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-flatfile-remote.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-flatfile.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/midpoint-target-flatfile.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/role-csvfile-groups.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/role-csvfile-import.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/csvfile/role-csvfile.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/create-simple-idm-table-2.mysql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/create-simple-idm-table-sync.mysql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/create-simple-idm-table.mysql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/drop-simple-idm-table.mysql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/localhost-dbtable-advanced-nosync-2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/localhost-dbtable-advanced-nosync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/localhost-dbtable-advanced-sync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/localhost-dbtable-simple.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/postgresql/create-table-psql.sql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/databasetable/postgresql/resource-dbtable-postgresql.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/drupal/metarole-company-structure.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/drupal/metarole-drupal-roles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/drupal/resource-drupal-node-department-read-only.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/drupal/resource-drupal.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/drupal/role-drupal-roles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/dsee/example-base-only.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/dsee/odsee-localhost-advanced-nosync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/dsee/odsee-localhost-advanced-sync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/edirectory/example.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/edirectory/resource-edirectory-nosync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/edirectory/resource-ldap-edirectory-legacy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/basic-role-for-group.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/basic-role-for-project.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/basic-role-for-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/extensions/extension-gitlab.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/max-access-level-developer.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/max-access-level-guest.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/max-access-level-master.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/max-access-level-reporter.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/metarole-for-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/object-template-for-group.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/object-template-for-project.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/object-template-for-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/org-unit-groups.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/org-unit-projects.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/resource-gitlab-connector.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/role-permission-developer.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/role-permission-guest.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/role-permission-master.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/role-permission-owner.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/gitlab/role-permission-reporter.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/googleapps/googleapps-resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/GroupAdministratorOfProject-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/GroupDeveloperOfProject-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/GroupTemplate-object_template.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/JIRAAccount-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/JIRAGroup-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/JIRAGroupMembershipMetarole-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/JIRAProject-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/Jira-resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/ProjectTemplate-object_template.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/UserAdministratorOfProject-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/UserDeveloperOfProject-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/jira/UserTemplate-object_template.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ldap/evo-test-1-mod.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ldap/evo-test-1.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ldap/evo-test-1.schema
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ldap/midpoint-schema-example-mod.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/ldap/midpoint.schema
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/liferay/extension-accountAuthorization.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/liferay/liferay-localhost-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/liferay/liferay-localhost-medium.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/liferay/liferay-localhost-metarole-orgs.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/liferay/liferay-localhost-metarole-roles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/liferay/liferay-localhost-sync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/manual/resource-manual.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/manual/resource-semi-manual-csv.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/manual/semi-manual.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/misc/resource-gitlab.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/mysqluser/init-mysql.sql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/mysqluser/mysqluser-localhost-advanced-nosync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/mysqluser/mysqluser-localhost-simple.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/office365/office365-federated.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/office365/office365-managed.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/office365/office365-managed2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/acme-base-only.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/example-base-only.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/example.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/opendj-legacy-connector.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/opendj-localhost-basic.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/opendj-localhost-medium.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/opendj-localhost-resource-sync-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced-2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced-test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/opendj-localhost-resource-sync-no-extension-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/opendj-resource-genericsync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/piracy/opendj-localhost-resource-sync-extension-pirates.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/piracy/piracy-schema-modify.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/opendj/piracy/pirates-random.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/barbossa-disable.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/barbossa-enable.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/config.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/example.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/example.ldif.log
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/midpoint-schema-example-mod.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/midpoint.schema
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/olcAccess.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/openldap-localhost-advanced-sync-modifytimestamp.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/openldap/openldap-localhost-medium.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/oracle/resource-oracle-medium.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/extension-sap.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/object-template-org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/object-template-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/org-sap-roots.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/role-group-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/role-profile-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/role-role-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/sap-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/task-import-groups.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/task-import-profiles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/assignment/task-import-roles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/object-template-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/role-activity-group-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/role-group-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/role-profile-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/sap-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/sap-medium.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/task-import-activity-groups.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/task-import-groups.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/sap/task-import-profiles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Salesforce/EXTENSIONS/connector-extension-salesforce.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Salesforce/objecttemplate-role-salesforce.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Salesforce/objecttemplate-user-salesforce.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Salesforce/resource-salesforce-scim-connector.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Salesforce/role-default-salesforce-acount.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Salesforce/role-entitlement-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Salesforce/role-group-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Salesforce/systemconfig-salesforce.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Slack/EXTENSIONS/slackGroupExtension.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Slack/objecttemplate-role-slack.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Slack/objecttemplate-user-slack.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Slack/resource-slack-scim-connector.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Slack/role-default-slack-account.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Slack/role-group-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scim1/Slack/systemconfig-slack.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/bitbucket/CreateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/bitbucket/DeleteScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/bitbucket/SchemaScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/bitbucket/SearchScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/bitbucket/TestScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/bitbucket/UpdateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/bitbucket/bitbucket.default.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/bitbucket/resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/confluence-wiki/CreateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/confluence-wiki/DeleteScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/confluence-wiki/SchemaScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/confluence-wiki/SearchScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/confluence-wiki/TestScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/confluence-wiki/UpdateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/confluence-wiki/default.png
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/confluence-wiki/resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/jira/CreateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/jira/DeleteScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/jira/SchemaScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/jira/SearchScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/jira/TestScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/jira/UpdateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/jira/resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/openstack/OpenStack-CreateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/openstack/OpenStack-DeleteScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/openstack/OpenStack-SearchScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/openstack/OpenStack-UpdateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/openstack/OpenStack-schema.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/openstack/resource-openstack.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/thingspeak/CreateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/thingspeak/DeleteScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/thingspeak/SchemaScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/thingspeak/SearchScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/thingspeak/TestScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/thingspeak/UpdateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedrest/thingspeak/resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/CreateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/DeleteScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/RunOnConnectorScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/SchemaScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/SearchScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/SyncScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/TestScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/UpdateScript.groovy
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/create-scripted-idm-db-and-tables-sync.mysql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/create-scripted-idm-db-sync-postgresql.sql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/create-scripted-idm-tables-sync-postgresql.sql
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/localhost-scriptedsql-advanced-nosync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/localhost-scriptedsql-advanced-sync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/scriptedsql/localhost-scriptedsql-simple.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/siebel/siebel-resource.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/smartrecruiters/metarole-smartrecruiters-roles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/smartrecruiters/resource-smartrecruiters.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/smartrecruiters/role-smartrecruiters-roles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/solaris/deimos-solaris-resource-redhat.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/solaris/radegast-solaris-resource-simple.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/solaris/sudoers.solaris
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/unix/midpoint-user-example.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/unix/resource-unix-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/resources/zimbra/ldap-zimbra.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/account-jack-csv.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/account-jack-opendj.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/default-user-template.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/default-user-template2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/modification-assign-account.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/modification-change-password.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/modify-user-assign-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/notify-change-modify-password.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/notify-change-new-account.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/opendj-resource-sync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/policy-items-definition-generate-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/policy-items-definition-generate.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/policy-items-definition-validate.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/query-all-accounts.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/query-all-tasks.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/query-all-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/query-livesync-tasks.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/rest/query-paging.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/approval-with-additional-information-expression.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/approval-with-additional-information.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/approvals-complete.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/authorization-roles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-basic-csv.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-basic-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-basic.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-captain.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-domain-admin.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-domain-auditor.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-domain-operator.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-judge.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-manager-full-control.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-meta-approval-by-approver.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-meta-replicated-org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-meta-responsibility.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-pirate-lord.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-pirate-opendj.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-pirate.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-sailor-opendj.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-sailor.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/role-smith.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/sensitive-role-1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/sensitive-role-2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/sensitive-role-3.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/roles/users-for-approval-processes.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/samples.iml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/schema/extension-genericsync.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/schema/extension-piracy.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/schema/extension-samples.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/schema/extension-whatever.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/aci.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/lookupTables/lookup-employee-type.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/misc/midpoint-crm-flatfile.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/misc/sysconfig-readme.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/objectTemplates/object-template-org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/objectTemplates/object-template-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/org/org-top.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/readme.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/resources/crm-simulation-sync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/resources/openldap-customers.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/roles/metarole-org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/roles/role-customer-authz-admin.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/roles/role-customer-authz-enduser.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/roles/role-customer-basic-admin.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/roles/role-customer-basic-poweruser.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/roles/role-customer-basic-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/roles/role-meta-ldap-customer-group.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/valuePolicies/normal-password-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/valuePolicies/stronger-password-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-idm-saas/valuePolicies/verystrong-password-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/multitenant-simple/multitenant-orgs-users-roles.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/password-hash/csv.csv
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/password-hash/resource-csv.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/password-hash/security-policy.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/password-hash/system-configuration.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/ldif/create-user.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/objectTemplates/template-unix-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/orgs/org-m1set.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/orgs/org-m2set.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/orgs/org-m3set.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/orgs/org-machines.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/resources/resource-openLDAP.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/rest/create-new-machine.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/rest/modify-assign-parametric-role-valid-to.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/rest/modify-assign-parametric-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/rest/modify-unassign-parametric-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-admin.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-approver.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-auditor.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-enduser.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-metarole-org.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-metarole-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-metarole-service.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-reviewer.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-superuser.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-unix-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/roles/role-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/sequences/sequence-gid-number.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/sequences/sequence-uid-number.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/services/service-m1001.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/services/service-m1002.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/services/service-m1003.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/services/service-m2010.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/services/service-m2020.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/services/service-m2030.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/services/service-m3100.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/services/service-m3200.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap-advanced/services/service-m3300.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap/aci.ldif
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap/other/sequence-gidnumber.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap/other/sequence-uidnumber.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap/resources/ldap-posix.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap/roles/role-meta-ldapgroup.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap/roles/role-meta-unix-group.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-ldap/schema/extension-posix.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-management/extension-unix.xsd
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-management/midpoint-user-example.txt
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-management/resource-unix-advanced.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stories/unix-management/role-assignment-inducement-metarole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/target/maven-archiver/pom.properties
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/target/samples-3.9-tests.jar
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/advanced-task-scheduling.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/add-user.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/assign-enduser-role-to-selected-users-no-approval.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/assign-enduser-role-to-selected-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/assign-resource-to-selected-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/continue-on-any-error.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/disable-selected-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/discover-rebind.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/generate-passwords.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/list-encryption-keys.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/list-selected-resource-objects-2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/list-selected-resource-objects-3.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/list-selected-resource-objects-items.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/list-selected-resource-objects.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/list-selected-users-ordered.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/list-selected-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/list-users-with-a-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/modify-selected-users-multinode.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/modify-selected-users-unassign-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/modify-selected-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/purge-resource-schema.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/recompute-selected-orgs.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/recompute-selected-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/recompute-users-with-a-role.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/recompute-users-without-fullname.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/recompute-users-without-nickname-starting-on-b.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/recompute-users-without-nickname.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/recompute-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/reencrypt-selected-objects.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/script-arbitrary-code-close-campaign.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/script-async-execution.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/script-orgs.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/script-users-distinct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/script-users-multinode.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/bulk-actions/send-notifications-about-all-users.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/clustering-and-basic-failover.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/limiting-parallel-execution-2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/limiting-parallel-execution.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/multinode-task-1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/multinode-task-2-customized-allocation.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/non-resilient-tasks.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/partitioned-multi-node-reconciliation-numeric.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/partitioned-multi-node-reconciliation-string.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/partitioned-single-node-task-1.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/recon-task-csv-dry-run.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/recon-task-csv.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/recon-task-opendj-test.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/recon-task-opendj.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-HR-livesync.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-audit-cleanup.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-check-object-integrity.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-check-shadow-integrity.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-jdbc-ping-default.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-jdbc-ping.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-reindex-abstractRole.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-reindex-audit-records.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-reindex.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-scheduling.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-suspension.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-tree.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-user-recompute-distinct.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-user-recompute-multinode.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-user-recompute-segmented.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-user-recompute-selected-users-only.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-user-recompute.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/task-validity-partitioned.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/templates/task-template-change-description-start-2.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/templates/task-template-change-description-start.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tasks/templates/task-template-change-description.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testng-integration.xml
+%%PORTEXAMPLES%%%%EXAMPLESDIR%%/testng-unit.xml
+ at dir %%JAVASHAREDIR%%/icf-connectors
+%%JAVASHAREDIR%%/midpoint/midpoint.war
+ at dir(midpoint,midpoint,) /var/db/midpoint
+/var/db/midpoint/icf-connectors
+/var/db/midpoint/lib
+@(midpoint,midpoint,) /var/db/midpoint/log
+ at dir(midpoint,midpoint,) /var/log/midpoint
+ at dir(midpoint,midpoint,) /var/run/midpoint


More information about the svn-ports-head mailing list