Skip navigation links

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.management.mbeanservers.edit
Interface PortablePartitionManagerMBean

All Superinterfaces:
Service

public interface PortablePartitionManagerMBean
extends Service
Since:
12.2.1

Field Summary
static String OBJECT_NAME
          This is the ObjectName under which this service is registered in the MBeanServer

 

Method Summary
abstract  ImportExportPartitionTaskMBean exportPartition(String partitionName, String expArchPath)
           Exports a partition from current domain into an archive, to be used for importing the partition into a different domain
abstract  ImportExportPartitionTaskMBean exportPartition(String partitionName, String expArchPath, Boolean includeAppsNLibs)
           Exports a partition from current domain into an archive, to be used for importing the partition into a different domain
abstract  ImportExportPartitionTaskMBean exportPartition(String partitionName, String expArchPath, Boolean includeAppsNLibs, String keyFile)
           Exports a partition from current domain into an archive, to be used for importing the partition into a different domain
abstract  ImportExportPartitionTaskMBean exportPartition(String partitionName, String expArchPath, String keyFile)
           Exports a partition from current domain into an archive, to be used for importing the partition into a different domain
abstract  ImportExportPartitionTaskMBean importPartition(String archiveFileName, Boolean createNew)
           Imports a partition into existing domain, from an archive exported using exportPartition
abstract  ImportExportPartitionTaskMBean importPartition(String archiveFileName, Boolean createNew, String keyFile)
           Imports a partition into existing domain, from an archive exported using exportPartition
abstract  ImportExportPartitionTaskMBean importPartition(String archiveFileName, String partitionName, Boolean createNew)
           Imports a partition into existing domain, from an archive exported using exportPartition
abstract  ImportExportPartitionTaskMBean importPartition(String archiveFileName, String partitionName, Boolean createNew, String keyFile)
           Imports a partition into existing domain, from an archive exported using exportPartition
abstract  ResourceGroupMigrationTaskMBean migrateResourceGroup(TargetMBean target, TargetMBean currentTarget, TargetMBean newTarget, long timeout)
          Migrates resource group from one physical target to another.

 

Methods inherited from interface weblogic.management.mbeanservers.Service
getName, getParentAttribute, getParentService, getPath, getType

 

Field Detail

OBJECT_NAME

static final String OBJECT_NAME
This is the ObjectName under which this service is registered in the MBeanServer

Method Detail

migrateResourceGroup

ResourceGroupMigrationTaskMBean migrateResourceGroup(TargetMBean target,
                                                     TargetMBean currentTarget,
                                                     TargetMBean newTarget,
                                                     long timeout)
Migrates resource group from one physical target to another. The new physical target specified is used as the target for the VirtualTarget associated with the ResourceGroup and can be a cluster or a server.
Parameters:
target - VirtualTargetMBean The VirtualTarget associated with the ResourceGroup.
currentTarget - The current physical target for the Resource Group which can be a server or cluster. This is what is got from the targetMbean of the VirtualTarget associated with the ResourceGroup.
newTarget - The new physical target to which the ResourceGroup is being migrated which can be a server or cluster. This will be set as the targetMbean of the VirtualTarget associated with the ResourceGroup.
timeout - Timeout for the resource group migration task.
Returns:
ResourceGroupMigrationTaskMBean the MBean that indicates the status of the resource group migration operation

importPartition

ImportExportPartitionTaskMBean importPartition(String archiveFileName,
                                               String partitionName,
                                               Boolean createNew,
                                               String keyFile)
                                               throws Exception

Imports a partition into existing domain, from an archive exported using exportPartition

Parameters:
archiveFileName - full path String to the archive to import as seen by the admin server (not the client). importPartition will also look for a file, partitionName-attributes.json, in the same directory as the partition archive. If it is found then the values in that file will override those in the partition archive.
partitionName - name of the newly created partition. Defaults to name specified in partition archive
createNew - Boolean flag controlling creating of ResourceGroupTemplate during importPartition. If no flag is specified importPartition fails if there is an existing RGT with same name. If false use the existing RGT if there is a clash during import. If true create a new RGT if there is a clash
keyFile - full path String for user provided file containing the string that was used as the encryption key for encrypted attributes during export
Returns:
ImportExportPartitionTaskMBean the MBean that indicates the status of the importPartition operation
Throws:
Exception

importPartition

ImportExportPartitionTaskMBean importPartition(String archiveFileName,
                                               Boolean createNew)
                                               throws Exception

Imports a partition into existing domain, from an archive exported using exportPartition

Parameters:
archiveFileName - full path String to the archive to import as seen by the admin server (not the client). importPartition will also look for a file, partitionName-attributes.json, in the same directory as the partition archive. If it is found then the values in that file will override those in the partition archive.
createNew - Boolean flag controlling creating of ResourceGroupTemplate during importPartition. If no flag is specified importPartition fails if there is an existing RGT with same name. If false use the existing RGT if there is a clash during import. If true create a new RGT if there is a clash
Returns:
ImportExportPartitionTaskMBean the MBean that indicates the status of the importPartition operation
Throws:
Exception

importPartition

ImportExportPartitionTaskMBean importPartition(String archiveFileName,
                                               Boolean createNew,
                                               String keyFile)
                                               throws Exception

Imports a partition into existing domain, from an archive exported using exportPartition

Parameters:
archiveFileName - full path String to the archive to import as seen by the admin server (not the client). importPartition will also look for a file, partitionName-attributes.json, in the same directory as the partition archive. If it is found then the values in that file will override those in the partition archive.
createNew - Boolean flag controlling creating of ResourceGroupTemplate during importPartition. If no flag is specified importPartition fails if there is an existing RGT with same name. If false use the existing RGT if there is a clash during import. If true create a new RGT if there is a clash
keyFile - full path String for user provided file containing the string that was used as the encryption key for encrypted attributes during export
Returns:
ImportExportPartitionTaskMBean the MBean that indicates the status of the importPartition operation
Throws:
Exception

importPartition

ImportExportPartitionTaskMBean importPartition(String archiveFileName,
                                               String partitionName,
                                               Boolean createNew)
                                               throws Exception

Imports a partition into existing domain, from an archive exported using exportPartition

Parameters:
archiveFileName - full path String to the archive to import as seen by the admin server (not the client). importPartition will also look for a file, partitionName-attributes.json, in the same directory as the partition archive. If it is found then the values in that file will override those in the partition archive.
partitionName - name of the newly created partition. Defaults to name specified in partition archive
createNew - Boolean flag controlling creating of ResourceGroupTemplate during importPartition. If no flag is specified importPartition fails if there is an existing RGT with same name. If false use the existing RGT if there is a clash during import. If true create a new RGT if there is a clash
Returns:
ImportExportPartitionTaskMBean the MBean that indicates the status of the importPartition operation
Throws:
Exception

exportPartition

ImportExportPartitionTaskMBean exportPartition(String partitionName,
                                               String expArchPath,
                                               Boolean includeAppsNLibs,
                                               String keyFile)
                                               throws Exception

Exports a partition from current domain into an archive, to be used for importing the partition into a different domain

Parameters:
partitionName - is the name of the partition to export
expArchPath - full path String to the archive file to create as seen by the admin server (not the client). In addition to creating the archive exportPartition will place a copy of the partitionName-attributes.json file in the same directory as the partition archive.
includeAppsNLibs - is a boolean that influences how application binaries are handled. Defaults to true
keyFile - full path String for user provided file containing a string to use as the encryption key for encrypted attributes
Returns:
ImportExportPartitionTaskMBean the MBean that indicates the status of the exportPartition operation
Throws:
Exception

exportPartition

ImportExportPartitionTaskMBean exportPartition(String partitionName,
                                               String expArchPath,
                                               Boolean includeAppsNLibs)
                                               throws Exception

Exports a partition from current domain into an archive, to be used for importing the partition into a different domain

Parameters:
partitionName - is the name of the partition to export
expArchPath - full path String to the archive file to create as seen by the admin server (not the client). In addition to creating the archive exportPartition will place a copy of the partitionName-attributes.json file in the same directory as the partition archive.
includeAppsNLibs - is a boolean that influences how application binaries are handled. Defaults to true
Returns:
ImportExportPartitionTaskMBean the MBean that indicates the status of the exportPartition operation
Throws:
Exception

exportPartition

ImportExportPartitionTaskMBean exportPartition(String partitionName,
                                               String expArchPath)
                                               throws Exception

Exports a partition from current domain into an archive, to be used for importing the partition into a different domain

Parameters:
partitionName - is the name of the partition to export
expArchPath - full path String to the archive file to create as seen by the admin server (not the client). In addition to creating the archive exportPartition will place a copy of the partitionName-attributes.json file in the same directory as the partition archive.
Returns:
ImportExportPartitionTaskMBean the MBean that indicates the status of the exportPartition operation
Throws:
Exception

exportPartition

ImportExportPartitionTaskMBean exportPartition(String partitionName,
                                               String expArchPath,
                                               String keyFile)
                                               throws Exception

Exports a partition from current domain into an archive, to be used for importing the partition into a different domain

Parameters:
partitionName - is the name of the partition to export
expArchPath - full path String to the archive file to create as seen by the admin server (not the client). In addition to creating the archive exportPartition will place a copy of the partitionName-attributes.json file in the same directory as the partition archive.
keyFile - full path String for user provided file containing a string to use as the encryption key for encrypted attributes
Returns:
ImportExportPartitionTaskMBean the MBean that indicates the status of the exportPartition operation
Throws:
Exception

Skip navigation links

Copyright 1996, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09