📄 repositoryoperations.java
字号:
package com.sun.corba.se.spi.activation;
/**
* com/sun/corba/se/spi/activation/RepositoryOperations.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl
* Monday, July 21, 2008 1:27:47 AM GMT-08:00
*/
public interface RepositoryOperations
{
// always uninstalled.
int registerServer (com.sun.corba.se.spi.activation.RepositoryPackage.ServerDef serverDef) throws com.sun.corba.se.spi.activation.ServerAlreadyRegistered, com.sun.corba.se.spi.activation.BadServerDefinition;
// unregister server definition
void unregisterServer (int serverId) throws com.sun.corba.se.spi.activation.ServerNotRegistered;
// get server definition
com.sun.corba.se.spi.activation.RepositoryPackage.ServerDef getServer (int serverId) throws com.sun.corba.se.spi.activation.ServerNotRegistered;
// Return whether the server has been installed
boolean isInstalled (int serverId) throws com.sun.corba.se.spi.activation.ServerNotRegistered;
// if the server is currently marked as installed.
void install (int serverId) throws com.sun.corba.se.spi.activation.ServerNotRegistered, com.sun.corba.se.spi.activation.ServerAlreadyInstalled;
// if the server is currently marked as uninstalled.
void uninstall (int serverId) throws com.sun.corba.se.spi.activation.ServerNotRegistered, com.sun.corba.se.spi.activation.ServerAlreadyUninstalled;
// list registered servers
int[] listRegisteredServers ();
// servers.
String[] getApplicationNames ();
// Find the ServerID associated with the given application name.
int getServerID (String applicationName) throws com.sun.corba.se.spi.activation.ServerNotRegistered;
} // interface RepositoryOperations
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -