Searched defs:arguments (Results 1 - 25 of 232) sorted by relevance

12345678910

/forgerock/opendj2/src/server/org/opends/server/api/
H A DInvokableComponent.java73 * Invokes the specified method with the provided arguments.
76 * @param arguments The set of configuration attributes holding
77 * the arguments to use for the method.
87 ConfigAttribute[] arguments)
86 invokeMethod(String methodName, ConfigAttribute[] arguments) argument
/forgerock/opendj-b2.6/src/server/org/opends/server/api/
H A DInvokableComponent.java74 * Invokes the specified method with the provided arguments.
77 * @param arguments The set of configuration attributes holding
78 * the arguments to use for the method.
88 ConfigAttribute[] arguments)
87 invokeMethod(String methodName, ConfigAttribute[] arguments) argument
/forgerock/opendj2.6.2/src/server/org/opends/server/api/
H A DInvokableComponent.java74 * Invokes the specified method with the provided arguments.
77 * @param arguments The set of configuration attributes holding
78 * the arguments to use for the method.
88 ConfigAttribute[] arguments)
87 invokeMethod(String methodName, ConfigAttribute[] arguments) argument
/forgerock/opendj2-hg/src/server/org/opends/server/api/
H A DInvokableComponent.java73 * Invokes the specified method with the provided arguments.
76 * @param arguments The set of configuration attributes holding
77 * the arguments to use for the method.
87 ConfigAttribute[] arguments)
86 invokeMethod(String methodName, ConfigAttribute[] arguments) argument
/forgerock/opendj2-jel-hg/src/server/org/opends/server/api/
H A DInvokableComponent.java74 * Invokes the specified method with the provided arguments.
77 * @param arguments The set of configuration attributes holding
78 * the arguments to use for the method.
88 ConfigAttribute[] arguments)
87 invokeMethod(String methodName, ConfigAttribute[] arguments) argument
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/api/
H A DInvokableComponent.java74 * Invokes the specified method with the provided arguments.
77 * @param arguments The set of configuration attributes holding
78 * the arguments to use for the method.
87 Object invokeMethod(String methodName, ConfigAttribute[] arguments) argument
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/
H A DScriptException.java36 * @param arguments Arguments used in the message associated with the error code.
38 public ScriptException(ScriptErrorCode errorCode, Throwable cause, String... arguments) { argument
39 super(RESOURCE_BUNDLE, errorCode.name(), arguments);
47 * @param arguments Arguments used in the message associated with the error code.
49 public ScriptException(ScriptErrorCode errorCode, String... arguments) { argument
50 this(errorCode, null, arguments);
67 * @param arguments Arguments used in the message associated with the error code.
71 String... arguments) {
72 final ScriptException exception = new ScriptException(errorCode, cause, arguments);
83 * @param arguments Argument
70 createAndLogError(Logger logger, ScriptErrorCode errorCode, Throwable cause, String... arguments) argument
86 createAndLogDebug(Logger logger, ScriptErrorCode errorCode, Throwable cause, String... arguments) argument
101 createAndLogError(Logger logger, ScriptErrorCode errorCode, String... arguments) argument
115 createAndLogDebug(Logger logger, ScriptErrorCode errorCode, String... arguments) argument
[all...]
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/admin/
H A DIToolsOptionHandler.java37 public boolean checkArguments(List arguments); argument
39 public void handleRequest(List arguments); argument
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/handler/
H A DCustomInstallHandler.java49 public boolean checkArguments(List arguments) { argument
50 return verifyArguments(arguments);
53 public void handleRequest(List arguments) { argument
59 if (arguments.isEmpty()) {
60 Debug.log("CustomInstallHandler: invoked with 0 arguments.");
62 } else if (arguments.size() == 2) {
63 Debug.log("CustomInstallHandler: invoked with 2 arguments - "
64 + arguments);
66 String type = (String) arguments.get(0);
67 String responseFileName = (String) arguments
[all...]
H A DInstallHandler.java51 public boolean checkArguments(List arguments) { argument
52 return verifyArguments(arguments);
55 public void handleRequest(List arguments) { argument
61 if (arguments.isEmpty()) {
62 Debug.log("InstallHandler: invoked with 0 arguments.");
64 } else if (arguments.size() == 2) {
65 Debug.log("InstallHandler: invoked with 2 arguments - "
66 + arguments);
68 String type = (String) arguments.get(0);
69 String responseFileName = (String) arguments
[all...]
H A DMigrateHandler.java61 * @param arguments
64 public boolean checkArguments(List arguments) { argument
65 // There should be no arguments to this option. If there is any it
68 if (arguments != null && arguments.size() > 0) {
69 String specifiedArgs = formatArgs(arguments);
81 * @param arguments
83 public void handleRequest(List arguments) { argument
89 if (arguments.isEmpty()) {
90 Debug.log("MigrateHandler: invoked with 0 arguments
[all...]
H A DUninstallAllHandler.java51 public boolean checkArguments(List arguments) { argument
52 // There should be no arguments to this option. If there is any it
55 if (arguments != null && arguments.size() > 0) {
56 String specifiedArgs = formatArgs(arguments);
66 public void handleRequest(List arguments) { argument
H A DUninstallHandler.java52 public boolean checkArguments(List arguments) { argument
53 return verifyArguments(arguments);
56 public void handleRequest(List arguments) { argument
62 if (arguments.isEmpty()) {
63 Debug.log("InstallHandler: invoked with 0 arguments.");
67 } else if (arguments.size() == 2) {
68 Debug.log("InstallHandler: invoked with 2 arguments - "
69 + arguments);
70 String type = (String) arguments.get(0);
71 String responseFileName = (String) arguments
[all...]
H A DVersionHandler.java52 public boolean checkArguments(List arguments) { argument
53 // There should be no arguments to this option. If there is any it
56 if (arguments != null && arguments.size() > 0) {
57 String specifiedArgs = formatArgs(arguments);
67 public void handleRequest(List arguments) { argument
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/install/handler/
H A DGetEncryptionKeyHandler.java52 public boolean checkArguments(List arguments) { argument
53 // There should be no arguments to this option. If there is any it
56 if (arguments != null && arguments.size() > 0) {
57 String specifiedArgs = formatArgs(arguments);
67 public void handleRequest(List arguments) { argument
/forgerock/jee-agents-v3.5/jee-agents-websphere/jee-agents-websphere-common/src/main/java/com/sun/identity/agents/tools/websphere/
H A DRemoveGroupHandler.java57 public boolean checkArguments(List arguments) { argument
58 return super.checkArguments(arguments);
61 public void handleRequest(List arguments) { argument
64 String amGroupName = (String)arguments.get(1);
65 File file = new File((String)arguments.get(2) +
71 XMLElement authElem = findAuthElement(adminauthFile,arguments);
107 new Object[] { arguments.get(2) });
/forgerock/openidm-v4/openidm-shell/src/main/java/org/forgerock/openidm/shell/impl/
H A DCommandProxy.java52 * @param arguments the command arguments
56 public Object execute(CommandSession session, List<Object> arguments) throws Exception { argument
59 return ((Function) tgt).execute(session, arguments);
61 return Reflective.invoke(session, tgt, function, arguments);
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/
H A DScriptException.java36 * @param arguments Arguments used in the message associated with the error code.
38 public ScriptException(ScriptErrorCode errorCode, Throwable cause, String... arguments) { argument
39 super(RESOURCE_BUNDLE, errorCode.name(), arguments);
47 * @param arguments Arguments used in the message associated with the error code.
49 public ScriptException(ScriptErrorCode errorCode, String... arguments) { argument
50 this(errorCode, null, arguments);
67 * @param arguments Arguments used in the message associated with the error code.
71 String... arguments) {
72 final ScriptException exception = new ScriptException(errorCode, cause, arguments);
83 * @param arguments Argument
70 createAndLogError(Logger logger, ScriptErrorCode errorCode, Throwable cause, String... arguments) argument
86 createAndLogDebug(Logger logger, ScriptErrorCode errorCode, Throwable cause, String... arguments) argument
101 createAndLogError(Logger logger, ScriptErrorCode errorCode, String... arguments) argument
115 createAndLogDebug(Logger logger, ScriptErrorCode errorCode, String... arguments) argument
[all...]
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/admin/
H A DIToolsOptionHandler.java37 public boolean checkArguments(List arguments); argument
39 public void handleRequest(List arguments); argument
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/handler/
H A DCustomInstallHandler.java49 public boolean checkArguments(List arguments) { argument
50 return verifyArguments(arguments);
53 public void handleRequest(List arguments) { argument
59 if (arguments.isEmpty()) {
60 Debug.log("CustomInstallHandler: invoked with 0 arguments.");
62 } else if (arguments.size() == 2) {
63 Debug.log("CustomInstallHandler: invoked with 2 arguments - "
64 + arguments);
66 String type = (String) arguments.get(0);
67 String responseFileName = (String) arguments
[all...]
H A DInstallHandler.java51 public boolean checkArguments(List arguments) { argument
52 return verifyArguments(arguments);
55 public void handleRequest(List arguments) { argument
61 if (arguments.isEmpty()) {
62 Debug.log("InstallHandler: invoked with 0 arguments.");
64 } else if (arguments.size() == 2) {
65 Debug.log("InstallHandler: invoked with 2 arguments - "
66 + arguments);
68 String type = (String) arguments.get(0);
69 String responseFileName = (String) arguments
[all...]
H A DMigrateHandler.java61 * @param arguments
64 public boolean checkArguments(List arguments) { argument
65 // There should be no arguments to this option. If there is any it
68 if (arguments != null && arguments.size() > 0) {
69 String specifiedArgs = formatArgs(arguments);
81 * @param arguments
83 public void handleRequest(List arguments) { argument
89 if (arguments.isEmpty()) {
90 Debug.log("MigrateHandler: invoked with 0 arguments
[all...]
H A DUninstallAllHandler.java51 public boolean checkArguments(List arguments) { argument
52 // There should be no arguments to this option. If there is any it
55 if (arguments != null && arguments.size() > 0) {
56 String specifiedArgs = formatArgs(arguments);
66 public void handleRequest(List arguments) { argument
H A DUninstallHandler.java52 public boolean checkArguments(List arguments) { argument
53 return verifyArguments(arguments);
56 public void handleRequest(List arguments) { argument
62 if (arguments.isEmpty()) {
63 Debug.log("InstallHandler: invoked with 0 arguments.");
67 } else if (arguments.size() == 2) {
68 Debug.log("InstallHandler: invoked with 2 arguments - "
69 + arguments);
70 String type = (String) arguments.get(0);
71 String responseFileName = (String) arguments
[all...]
H A DVersionHandler.java52 public boolean checkArguments(List arguments) { argument
53 // There should be no arguments to this option. If there is any it
56 if (arguments != null && arguments.size() > 0) {
57 String specifiedArgs = formatArgs(arguments);
67 public void handleRequest(List arguments) { argument

Completed in 3149 milliseconds

12345678910