Skip navigation links


com.bea.content.spi.flexspi.repository
Interface RepositoryConfigOpsV1

All Superinterfaces
ISPIMarker, ISPIRepositoryMarker, Serializable

Deprecated Replaced with RepositoryConfigOpsV2

@Deprecated
public interface RepositoryConfigOpsV1
extends Serializable, ISPIRepositoryMarker

RepositoryConfigOps is a Repository interface (as opposed to a Ticket interface) which allows the repository to get callbacks when various operations are performed on RepositoryConfig objects. <p/>


Nested Class Summary
static class RepositoryConfigOpsV1.MethodName
          Deprecated  

 

Method Summary
 void createRepository(RepositoryConfig config)
          Deprecated This method is called immediately after a new repository config is created in the VCR, but before is used.
 void removeRepository(String repoConfigName)
          Deprecated This method is called immediately after a repository config is removed by the VCR.
 void updateRepository(RepositoryConfig config)
          Deprecated This method is called immediately after a repository config is updated in the VCR, but before the updated repository config is used.

 

Method Detail

createRepository

void createRepository(RepositoryConfig config)
                      throws RepositoryException
Deprecated 
This method is called immediately after a new repository config is created in the VCR, but before is used. <p/> This method takes the RepositoryConfig object and allows custom actions to be performed at create time. <p/>
Parameters
config - The repository configuration
Throws
RepositoryException - if the creation operation fails.

updateRepository

void updateRepository(RepositoryConfig config)
                      throws RepositoryException
Deprecated 
This method is called immediately after a repository config is updated in the VCR, but before the updated repository config is used. <p/> This method takes the RepositoryConfig object and allows custom actions to be performed at update time. <p/>
Parameters
config - The repository configuration
Throws
RepositoryException - if the update operation fails.

removeRepository

void removeRepository(String repoConfigName)
                      throws RepositoryException
Deprecated 
This method is called immediately after a repository config is removed by the VCR. <p/> This method takes the String repository name and allows custom actions to be performed at removal time. <p/>
Parameters
repoConfigName - The name of the repository config
Throws
RepositoryException - If the removal operation fails.

Skip navigation links


Copyright © 2010, Oracle. All rights reserved.