public void sendRepositoryStateNotification( CDOCommonRepository.State oldState, CDOCommonRepository.State newState, CDOID rootResourceID) { EmbeddedClientSession clientSession = clientSessionProtocol.getSession(); clientSession.handleRepositoryStateChanged(oldState, newState); }
@Deprecated public void sendCommitNotification(CDOCommitInfo commitInfo) { EmbeddedClientSession clientSession = clientSessionProtocol.getSession(); clientSession.handleCommitNotification(commitInfo); }
public void sendBranchNotification(InternalCDOBranch branch) { EmbeddedClientSession clientSession = clientSessionProtocol.getSession(); clientSession.handleBranchNotification(branch); }
public void sendRepositoryTypeNotification( CDOCommonRepository.Type oldType, CDOCommonRepository.Type newType) { EmbeddedClientSession clientSession = clientSessionProtocol.getSession(); clientSession.handleRepositoryTypeChanged(oldType, newType); }
@Deprecated public org.eclipse.emf.cdo.spi.common.CDOAuthenticationResult sendAuthenticationChallenge( byte[] randomToken) throws Exception { return clientSessionProtocol.handleAuthenticationChallenge(randomToken); }
public void sendLockNotification(CDOLockChangeInfo lockChangeInfo) { EmbeddedClientSession clientSession = clientSessionProtocol.getSession(); clientSession.handleLockNotification(lockChangeInfo, null); }