Searched refs:method (Results 1 - 25 of 579) sorted by relevance

1234567891011>>

/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/info/
H A Dping.js28 if (request.method !== "read") {
29 throw "Unsupported operation on ping info service: " + request.method;
H A Dversion.js28 if (request.method !== "read") {
29 throw "Unsupported operation on info version service: " + request.method;
H A Dlogin.js27 if (request.method === "read") {
30 throw "Unsupported operation on info login service: " + request.method;
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/infoservice/script/info/
H A Dcustomping.js4 if (request.method !== "read") {
5 throw "Unsupported operation on ping info service: " + request.method;
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/customendpoint/script/
H A Decho.js25 if (request.method === "create") {
27 method: "create",
34 } else if (request.method === "read") {
36 method: "read",
41 } else if (request.method === "update") {
43 method: "update",
50 } else if (request.method === "patch") {
52 method: "patch",
59 } else if (request.method === "query") {
62 method
[all...]
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/models/scripts/
H A DScriptModel.js53 sync: function (method, model, options) {
60 method = method.toLowerCase();
61 if (method === "create" || model.id === null) {
65 if (method === "create" || method === "update") {
69 return Backbone.Model.prototype.sync.call(this, method, model, options);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/models/scripts/
H A DScriptModel.js53 sync (method, model, options) {
60 method = method.toLowerCase();
61 if (method === "create" || model.id === null) {
65 if (method === "create" || method === "update") {
69 return Backbone.Model.prototype.sync.call(this, method, model, options);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DRedirectCallback.java47 private String method = "get"; field in class:RedirectCallback
71 * redirect URL,redirect data and redirect method.
75 * @param method Method used for redirection, either "GET" or "POST".
78 String method) {
81 this.method = method;
86 * redirect URL,redirect data,redirect method,status parameter
91 * @param method Method used for redirection, either "GET" or "POST".
98 String method, String statusParameter,
102 this.method
77 RedirectCallback(String redirectUrl, Map redirectData, String method) argument
97 RedirectCallback(String redirectUrl, Map redirectData, String method, String statusParameter, String redirectBackUrlCookie) argument
147 setMethod(String method) argument
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DRedirectCallback.java47 private String method = "get"; field in class:RedirectCallback
71 * redirect URL,redirect data and redirect method.
75 * @param method Method used for redirection, either "GET" or "POST".
78 String method) {
81 this.method = method;
86 * redirect URL,redirect data,redirect method,status parameter
91 * @param method Method used for redirection, either "GET" or "POST".
98 String method, String statusParameter,
102 this.method
77 RedirectCallback(String redirectUrl, Map redirectData, String method) argument
97 RedirectCallback(String redirectUrl, Map redirectData, String method, String statusParameter, String redirectBackUrlCookie) argument
147 setMethod(String method) argument
[all...]
/forgerock/openam-v13/openam-scripting/src/main/java/org/forgerock/openam/scripting/sandbox/
H A DGroovySandboxValueFilter.java45 * @param target the object or class that is the target of a scripted operation (method call, constructor,
46 * static method call, property/field access).
96 public Object onMethodCall(Invoker invoker, Object receiver, String method, Object... args) throws Throwable { argument
97 if (isClosureCall(receiver, method) || isScriptOwnMethodCall(receiver, method)) {
101 return doCall(invoker, receiver, method, args);
103 return super.onMethodCall(invoker, receiver, method, args);
107 * Determines if this method call is a call to a closure (anonymous method) defined within the script itself.
109 * @param receiver the object that is the target of the method cal
113 isClosureCall(Object receiver, String method) argument
124 isScriptOwnMethodCall(Object receiver, String method) argument
149 doCall(Invoker invoker, Object receiver, String method, Object... args) argument
[all...]
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/sandbox/
H A DGroovySandboxValueFilter.java45 * @param target the object or class that is the target of a scripted operation (method call, constructor,
46 * static method call, property/field access).
96 public Object onMethodCall(Invoker invoker, Object receiver, String method, Object... args) throws Throwable { argument
97 if (isClosureCall(receiver, method) || isScriptOwnMethodCall(receiver, method)) {
101 return doCall(invoker, receiver, method, args);
103 return super.onMethodCall(invoker, receiver, method, args);
107 * Determines if this method call is a call to a closure (anonymous method) defined within the script itself.
109 * @param receiver the object that is the target of the method cal
113 isClosureCall(Object receiver, String method) argument
124 isScriptOwnMethodCall(Object receiver, String method) argument
149 doCall(Invoker invoker, Object receiver, String method, Object... args) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/util/
H A DJSSSecureRandomFactoryImpl.java63 String method = "JSSSecureRandomFactoryImpl.getSecureRandomInstance ";
65 debug.message(method +
/forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/ui/notification/
H A DuserNotifications.js34 if (request.method === "read") {
50 } else if (request.method === "delete") {
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DSMServlet.java52 static final String METHOD = "method";
64 String method = request.getParameter(METHOD);
66 if (method != null && method.equalsIgnoreCase(IS_REALM_ENABLED)) {
72 } else if (method != null && method.equalsIgnoreCase(VERSION)) {
78 debug.message("SMServlet::doPost request=" + method + " response="
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/models/authorization/
H A DPolicyModel.js51 sync: function (method, model, options) {
59 method = "create";
63 return Backbone.Model.prototype.sync.call(this, method, model, options);
H A DPolicySetModel.js51 sync: function (method, model, options) {
59 method = "create";
63 return Backbone.Model.prototype.sync.call(this, method, model, options);
H A DResourceTypeModel.js55 sync: function (method, model, options) {
62 if (method.toLowerCase() === "create" || model.id === null) {
66 return Backbone.Model.prototype.sync.call(this, method, model, options);
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/uma/models/
H A DUMAPolicy.js47 sync: function (method, model, options) {
52 if (method.toLowerCase() === "update" && model.createRequired === true) {
64 return Backbone.Model.prototype.sync.call(this, method, model, options);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DSMServlet.java52 static final String METHOD = "method";
64 String method = request.getParameter(METHOD);
66 if (method != null && method.equalsIgnoreCase(IS_REALM_ENABLED)) {
72 } else if (method != null && method.equalsIgnoreCase(VERSION)) {
78 debug.message("SMServlet::doPost request=" + method + " response="
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/models/authorization/
H A DPolicyModel.js51 sync (method, model, options) {
59 method = "create";
63 return Backbone.Model.prototype.sync.call(this, method, model, options);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/user/uma/models/
H A DUMAPolicy.js40 sync (method, model, options) {
46 if (method.toLowerCase() === "update" && model.toBeCreated === true) {
56 return Backbone.Model.prototype.sync.call(this, method, model, options);
/forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/am/util/
H A DJSSInit.java72 final String method = "JSSInit.initialize";
130 debug.message(method + "certdbDir = " +
132 debug.message(method + "certdbPrefix = " +
134 debug.message(method + "certdbPassfile = " +
136 debug.message(method + "responderURL = " +
138 debug.message(method + "responderNickName = " +
140 debug.message(method + "fipsMode = " + fipsMode);
154 debug.message(method + "Unable to " +
180 debug.message(method +
182 debug.message(method
[all...]
/forgerock/openam-v13/openam-http/src/main/java/org/forgerock/openam/http/annotations/
H A DAnnotatedMethod.java38 * A method annotated with one of {@link Get}, {@link Post}, {@link Put} or {@link Delete}. This class
39 * works out what parameters are going to need to be passed to the annotated method, and creates
48 private final Method method; field in class:AnnotatedMethod
55 AnnotatedMethod(String operation, Object requestHandler, Method method, List<ContextParameter> contextParameters, argument
60 this.method = method;
68 if (method == null) {
81 Object result = method.invoke(requestHandler, args);
85 .setCause(new IllegalStateException("Cannot access the annotated method: " + method
118 checkMethod(Class<?> annotation, Object requestHandler, Method method) argument
[all...]
/forgerock/openam-v13/openam-http-client/src/main/java/org/forgerock/http/client/request/
H A DSimpleHttpClientRequest.java33 private String method; field in class:SimpleHttpClientRequest
61 public void setMethod(String method) { argument
62 this.method = method;
97 return method;
/forgerock/openam-v13/openam-core/src/test/java/org/forgerock/openam/idm/
H A DDecoratorTestUtils.java34 * Generates some dummy arguments for the given method. Fills in appropriate default values for each argument that
35 * the method expects: {@code null} for any object references, {@code false} for primitive booleans, {@code 0} for
38 * @param method the method to generate arguments for.
39 * @return an appropriate set of arguments to allow the method to be called.
41 public static Object[] generateArguments(Method method) { argument
42 Object[] args = new Object[method.getParameterTypes().length];
44 for (Class<?> type : method.getParameterTypes()) {
66 * @return an iterator of object arrays, each of which contains a single element which is a method from the
71 for (Method method
[all...]

Completed in 180 milliseconds

1234567891011>>