Supported Operations
Import/Export provides IMPORT, LIST, EXPORT, and DELETE operations for supported portal entities.
Import
Adds the entities defined in the specified XML file(s) to the portal database. If the specified entities are already present – determined by Id
, Name
, or other primary key, as appropriate – this operation will update the existing entity to match the information provided in the XML.
Usage
ant data-import -Ddir={path-to-directory} [-Dpattern={regex}]
Where path-to-directory
is a file system directory, absolute or relative, containing uPortal Import/Export XML files; and regex
is an (optional) Java Regular Expression specifying a file name pattern that candidate files must match or be ignored by the importer.
The -Dpattern Argument
Regex special characters overlap heavily with OS/Shell special characters. It's often better to avoid the -Dpattern
argument altogether. You can always place desired files into a new directory for import.
ant data-import -Dfile={path-to-file}
Where path-to-file
is a file system path, absolute or relative, containing uPortal Import/Export XML file.
List
Lists the data types the portal knows how to import/export/delete and can list all of the data currently in the database for a specific type.
Usage
ant data-list
Export
Creates XML files representing the requested entities and writes them to the specified file system location.
Usage
ant data-export -Ddir={path-to-directory} -Dtype={entity-type} [-Dsysid={entity-identifier}]
Where path-to-directory
is a file system directory, absolute or relative, wherein XML will be written; and entity-type
is any supported entity type (see table below); and entity-identifier
is the Id
or Name
of a single entity of the specified type. The -Dsysid
argument is not required for entity types that begin with "all-."
Named Sub-directories
On export, XML documents will be organized into sub-directories by entity type: e.g. channel
, layout
, user
, etc.
Delete
Removes the specified entities as well as dependent (orphaned) entities from the portal database.
Warning
The DELETE feature should be used with extreme caution and is more appropriate for DEV and TEST portals than for PROD. It is possible to make your portal unusable by deleting the wrong thing.
Usage
>ant crn-delete -Dtype={entity-type} [-Dsysid={entity-identifier}]
Where entity-type
is any supported entity type (see table below); and entity-identifier
is the Id
or Name
of a single entity of the specified type.
Table of Entity Types
entity-type | sysid | export | delete | notes |
---|---|---|---|---|
all | All portal entities | Combines the following sub-types:
| ||
all-layouts | All user layouts | Normal users generate | ||
all-profiles | All user profiles | May generate more than one document per user | ||
all-permissions | All permissions | A | ||
all-permission_sets | All permission_sets | A | ||
all-memberships | All local (RDBMS) memberships | A | ||
all-channels | All channels |
| ||
all-channel-types | All channel types |
| ||
all-groups | All local (RDBMS) groups | A | ||
all-group_memberships | All local (RDBMS) group_memberships | A | ||
all-users | All users |
| ||
all-themes | All themes |
| ||
all-structures | All structures |
| ||
all-entity-types | All entity types | "Entity types" here refers to the | ||
all-fragment-definitions | All fragment definitions | Requires the | ||
layout |
|
|
|
|
profile |
|
|
| May generate more than one document per user |
channel |
|
|
|
|
channel-type |
|
|
|
|
group |
|
|
| A |
group_membership |
|
|
| A |
user |
|
|
|
|
theme |
|
|
|
|
structure |
|
|
|
|
entity-type |
|
|
|
|
fragment-definition |
|
|
|
|
=not specified or not supported