Searched refs:content (Results 176 - 200 of 629) sorted by relevance

1234567891011>>

/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/workflow/
H A DCreateFedlet.java166 Properties content = new Properties();
167 content.setProperty("cot-name", cot);
168 content.setProperty("sun-fm-cot-status", "Active");
169 content.setProperty("sun-fm-trusted-providers", encodeVal(idp) + "," + encodeVal(sp));
170 content.setProperty("sun-fm-saml2-readerservice-url", "");
171 content.setProperty("sun-fm-saml2-writerservice-url", "");
173 content.store(out, null);
272 private static void writeToFile(String fileName, String content) throws WorkflowException { argument
274 IOUtils.writeToFile(fileName, content);
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DIOUtils.java54 * Reads the file content at the given path, and returns its UTF-8 content
58 * @return content of the file at the given path
68 * Reads the file content at the given path, and returns its content in
73 * @return content of the file at the given path
89 * Reads a files content from the classpath using UTF-8 encoding.
93 * @return the content of the file
102 * Reads a files content from the classpath using the given encoding.
107 * @return the content o
163 writeToFile(String fileName, String content) argument
[all...]
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/
H A DIdentityActivity.java22 import android.content.Context;
23 import android.content.DialogInterface;
24 import android.content.Intent;
25 import android.content.pm.PackageManager;
33 import android.support.v4.content.ContextCompat;
/forgerock/openam-v13/openam-examples/openam-example-clientsdk-cli/src/main/java/com/sun/identity/setup/
H A DSetupClientSDKSamples.java180 String content = getFileContent(FILE_AMCONFIG_PROPERTIES_TEMPLATE);
185 content = content.replaceAll("@" + tag + "@", value);
190 content += TRUST_ALL_CERTS;
195 out.write(content);
/forgerock/openidm-v4/openidm-security/src/main/java/org/forgerock/openidm/security/impl/
H A DKeystoreResourceProvider.java154 JsonValue content = new JsonValue(new LinkedHashMap<String, Object>(5));
155 content.put("type", store.getStore().getType());
156 content.put("provider", store.getStore().getProvider());
162 content.put("aliases", aliasList);
163 return newResourceResponse(resourceName, null, content).asPromise();
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/utils/
H A DIOUtils.java54 * Reads the file content at the given path, and returns its UTF-8 content
58 * @return content of the file at the given path
68 * Reads the file content at the given path, and returns its content in
73 * @return content of the file at the given path
89 * Reads a files content from the classpath using UTF-8 encoding.
93 * @return the content of the file
102 * Reads a files content from the classpath using the given encoding.
107 * @return the content o
163 writeToFile(String fileName, String content) argument
[all...]
/forgerock/openam/openam-examples/openam-example-clientsdk-cli/src/main/java/com/sun/identity/setup/
H A DSetupClientSDKSamples.java180 String content = getFileContent(FILE_AMCONFIG_PROPERTIES_TEMPLATE);
185 content = content.replaceAll("@" + tag + "@", value);
190 content += TRUST_ALL_CERTS;
195 out.write(content);
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/test/tools/
H A DReportGenerator.java127 * Writes content to a file.
129 * @param content Content to be written.
130 * @param fileName Name of file of which content is written to.
131 * @throws IOException if content cannot be written.
133 public static void writeToFile(String content, String fileName) argument
138 fw.write(content, 0, content.length());
147 * Returns content of a file.
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/ui/
H A DProgressCircle.java21 import android.content.Context;
22 import android.content.res.Resources.Theme;
23 import android.content.res.TypedArray;
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/xacml3/
H A DXACMLSchemaFactory.java146 for (Object content : attributeValue.getContent()) {
147 if (content instanceof String) {
148 return resourceAttributeUtil.fromJSON((String) content);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/test/tools/
H A DReportGenerator.java127 * Writes content to a file.
129 * @param content Content to be written.
130 * @param fileName Name of file of which content is written to.
131 * @throws IOException if content cannot be written.
133 public static void writeToFile(String content, String fileName) argument
138 fw.write(content, 0, content.length());
147 * Returns content of a file.
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/session/action/
H A DDeletePropertyActionHandler.java80 JsonValue content = request.getContent().get(KEYWORD_PROPERTIES);
82 if (content == null || content.isNull()) {
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/xacml3/
H A DXACMLSchemaFactory.java146 for (Object content : attributeValue.getContent()) {
147 if (content instanceof String) {
148 return resourceAttributeUtil.fromJSON((String) content);
/forgerock/openam-v13/openam-server-only/src/main/webapp/assets/lib/yui/reset/
H A Dreset-min.css7 body{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup,sub{line-height:-1px;vertical-align:text-top;}s (…)
H A Dreset.css15 q:before,q:after{content:'';}
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/add/
H A DCreateMechanismFromUriTask.java21 import android.content.Context;
22 import android.content.DialogInterface;
/forgerock/openam-v13/openam-entitlements/src/test/java/org/forgerock/openam/entitlement/rest/
H A DResourceTypesResourceTest.java172 JsonValue content = mock(JsonValue.class);
174 given(mockCreateRequest.getContent()).willReturn(content);
175 given(content.toString()).willReturn(jsonResourceType);
209 JsonValue content = mock(JsonValue.class);
212 given(mockCreateRequest.getContent()).willReturn(content);
215 given(content.toString()).willReturn(jsonResourceType.replaceAll("\"name\"", "\"id\""));
234 JsonValue content = mock(JsonValue.class);
237 given(mockCreateRequest.getContent()).willReturn(content);
240 given(content.toString()).willReturn(jsonResourceType.replaceAll("\"name\":.*,", ""));
263 JsonValue content
[all...]
/forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/models/
H A DForm.js60 container: "#content",
63 content: this.innerHTML
/forgerock/openidm-v4/openidm-script/src/main/java/org/forgerock/openidm/script/
H A DResourceFunctions.java80 * create(String resourceContainer, String newResourceId, Map content[, Map params][, List fieldFilter][, Map context])
97 JsonValue content = null;
128 content = new JsonValue(value);
130 content = (JsonValue) value;
169 return create(scope, resourceContainer, newResourceId, content, params, fieldFilter, context,
174 String newResourceId, JsonValue content, JsonValue params, List<Object> fieldFilter,
178 content));
295 * update(String resourceName, String revision, Map content [, Map params][, List fieldFilter][,Map context])
313 JsonValue content = null;
344 content
173 create(final Parameter scope, String resourceContainer, String newResourceId, JsonValue content, JsonValue params, List<Object> fieldFilter, Context context, final Function<?> callback) argument
389 update(final Parameter scope, String resourceName, String revision, JsonValue content, JsonValue params, List<Object> fieldFilter, Context context, final Function<?> callback) argument
929 action(final Parameter scope, String resourceName, String actionId, JsonValue content, JsonValue params, List<Object> fieldFilter, Context context, final Function<?> callback) argument
[all...]
/forgerock/openam/openam-server-only/src/main/webapp/assets/lib/yui/reset/
H A Dreset-min.css7 body{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup,sub{line-height:-1px;vertical-align:text-top;}s (…)
H A Dreset.css15 q:before,q:after{content:'';}
/forgerock/openam/openam-ui/openam-ui-ria/src/main/resources/css/am-admin/
H A Dbreadcrumb.less58 content: "\f105";
/forgerock/openam-v13/openam-console/src/main/webapp/css/
H A Dcss_generic.css115 .content-layout { margin: 0px 10px; }
122 .button-content-enabled { background-color: #CCC; }
129 .button-content-disabled { background-color: #CCC; }
134 .mini-button-content-enabled { background-color: #CCC; }
141 .mini-button-content-disabled { background-color: #CCC; }
152 .table-content { background-color: #FFF; }
187 .alert-error-content { background-color: #FFF; }
189 .alert-warning-content { background-color: #FFF; }
191 .alert-info-content { background-color: #FFF; }
230 .wizard-content
[all...]
/forgerock/openam/openam-console/src/main/webapp/css/
H A Dcss_generic.css115 .content-layout { margin: 0px 10px; }
122 .button-content-enabled { background-color: #CCC; }
129 .button-content-disabled { background-color: #CCC; }
134 .mini-button-content-enabled { background-color: #CCC; }
141 .mini-button-content-disabled { background-color: #CCC; }
152 .table-content { background-color: #FFF; }
187 .alert-error-content { background-color: #FFF; }
189 .alert-warning-content { background-color: #FFF; }
191 .alert-info-content { background-color: #FFF; }
230 .wizard-content
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/messages/
H A DMessageBuilderTest.java159 public void testToMessage(CharSequence[] content, String result) argument
162 for (CharSequence c : content) {
194 public void testToMessage1(CharSequence[] content, Locale locale, String result) argument
197 for (CharSequence c : content) {

Completed in 202 milliseconds

1234567891011>>