Searched refs:contentType (Results 1 - 25 of 64) sorted by relevance

123

/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/xacml/v3/model/
H A DContentType.java74 for (ContentType contentType : ContentType.values()) {
75 if (contentType.equals(ContentType.NONE)) {
78 if (contentType.getApplicationType().equalsIgnoreCase(toCompare)) {
79 return contentType;
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/xacml/v3/model/
H A DContentType.java74 for (ContentType contentType : ContentType.values()) {
75 if (contentType.equals(ContentType.NONE)) {
78 if (contentType.getApplicationType().equalsIgnoreCase(toCompare)) {
79 return contentType;
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMI18NUtils.java103 String contentType;
107 contentType = (client != null) ? client.getProperty(
113 contentType = Client.CDM_DEFAULT_CLIENT_TYPE;
116 contentType = Client.CDM_DEFAULT_CLIENT_TYPE;
118 return contentType;
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/base/model/
H A DAMI18NUtils.java103 String contentType;
107 contentType = (client != null) ? client.getProperty(
113 contentType = Client.CDM_DEFAULT_CLIENT_TYPE;
116 contentType = Client.CDM_DEFAULT_CLIENT_TYPE;
118 return contentType;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DRequest.java77 protected int contentType = NOT_SUPPORTED; field in class:Request
267 // check contents and set the contentType appropriately
280 if ((contentType != NOT_SUPPORTED) ||
290 contentType = AUTHENTICATION_QUERY;
294 if ((contentType != NOT_SUPPORTED) ||
304 contentType = AUTHORIZATION_DECISION_QUERY;
308 if ((contentType != NOT_SUPPORTED) ||
318 contentType = ATTRIBUTE_QUERY;
323 if ((contentType != NOT_SUPPORTED) &&
324 (contentType !
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DRequest.java80 protected int contentType = NOT_SUPPORTED; field in class:Request
270 // check contents and set the contentType appropriately
283 if ((contentType != NOT_SUPPORTED) ||
293 contentType = AUTHENTICATION_QUERY;
297 if ((contentType != NOT_SUPPORTED) ||
307 contentType = AUTHORIZATION_DECISION_QUERY;
311 if ((contentType != NOT_SUPPORTED) ||
321 contentType = ATTRIBUTE_QUERY;
326 if ((contentType != NOT_SUPPORTED) &&
327 (contentType !
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSRequest.java301 if (contentType != NOT_SUPPORTED) {
309 contentType = AUTHENTICATION_QUERY;
313 if (contentType != NOT_SUPPORTED) {
322 contentType = AUTHORIZATION_DECISION_QUERY;
326 if (contentType != NOT_SUPPORTED) {
334 contentType = ATTRIBUTE_QUERY;
338 if ((contentType != NOT_SUPPORTED) &&
339 (contentType != ASSERTION_ID_REFERENCE)) {
347 contentType = ASSERTION_ID_REFERENCE;
355 if ((contentType !
[all...]
H A DFSSAMLRequest.java184 if ((contentType != NOT_SUPPORTED) &&
185 (contentType != ASSERTION_ARTIFACT)) {
193 contentType = ASSERTION_ARTIFACT;
215 if (contentType == NOT_SUPPORTED) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSRequest.java301 if (contentType != NOT_SUPPORTED) {
309 contentType = AUTHENTICATION_QUERY;
313 if (contentType != NOT_SUPPORTED) {
322 contentType = AUTHORIZATION_DECISION_QUERY;
326 if (contentType != NOT_SUPPORTED) {
334 contentType = ATTRIBUTE_QUERY;
338 if ((contentType != NOT_SUPPORTED) &&
339 (contentType != ASSERTION_ID_REFERENCE)) {
347 contentType = ASSERTION_ID_REFERENCE;
355 if ((contentType !
[all...]
H A DFSSAMLRequest.java184 if ((contentType != NOT_SUPPORTED) &&
185 (contentType != ASSERTION_ARTIFACT)) {
193 contentType = ASSERTION_ARTIFACT;
215 if (contentType == NOT_SUPPORTED) {
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/authentication/service/protocol/
H A DRemoteServletResponse.java50 private String contentType = null; field in class:RemoteServletResponse
71 contentType = getContentType();
121 return response != null ? this.response.getContentType() : contentType;
H A DRemoteServletRequest.java63 private String contentType = null; field in class:RemoteServletRequest
126 contentType = getContentType();
264 return request != null ? this.request.getContentType() : contentType;
573 .append("Content type : ").append(contentType)
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/authentication/service/protocol/
H A DRemoteServletResponse.java50 private String contentType = null; field in class:RemoteServletResponse
71 contentType = getContentType();
121 return response != null ? this.response.getContentType() : contentType;
H A DRemoteServletRequest.java63 private String contentType = null; field in class:RemoteServletRequest
126 contentType = getContentType();
264 return request != null ? this.request.getContentType() : contentType;
573 .append("Content type : ").append(contentType)
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DSubjectConfirmationDataImpl.java71 private String contentType = null; field in class:SubjectConfirmationDataImpl
176 contentType = attrValue;
388 return contentType;
403 contentType = attribute;
493 if(contentType != null) {
496 .append(contentType)
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/assertion/impl/
H A DSubjectConfirmationDataImpl.java71 private String contentType = null; field in class:SubjectConfirmationDataImpl
176 contentType = attrValue;
388 return contentType;
403 contentType = attribute;
493 if(contentType != null) {
496 .append(contentType)
/forgerock/openam-v13/openam-server-auth-ui/src/main/java/com/sun/identity/authentication/UI/
H A DLoginServlet.java190 String contentType = null;
196 contentType = (String) origRequestData.get("CONTENT_TYPE");
221 if (contentType != null) {
223 debug.message("Content type is " + contentType);
225 response.setContentType(contentType);
/forgerock/openam/openam-server-auth-ui/src/main/java/com/sun/identity/authentication/UI/
H A DLoginServlet.java190 String contentType = null;
196 contentType = (String) origRequestData.get("CONTENT_TYPE");
221 if (contentType != null) {
223 debug.message("Content type is " + contentType);
225 response.setContentType(contentType);
/forgerock/openidm-v4/openidm-servlet/src/main/java/org/forgerock/openidm/ui/internal/service/
H A DResourceServlet.java198 String contentType = getServletContext().getMimeType(resName);
199 if (contentType != null) {
200 res.setContentType(contentType);
/forgerock/openidm-v4/openidm-zip/src/main/resources/samples/scriptedrest2dj/tools/
H A DCreateScript.groovy73 contentType: JSON,
/forgerock/opendj2/src/dsml/org/opends/dsml/protocol/
H A DDSMLServlet.java140 private String contentType; field in class:DSMLServlet
387 contentType = SOAPConstants.SOAP_1_1_CONTENT_TYPE;
390 contentType = SOAPConstants.SOAP_1_2_CONTENT_TYPE;
788 res.setHeader("Content-Type", contentType);
/forgerock/opendj2-hg/src/dsml/org/opends/dsml/protocol/
H A DDSMLServlet.java140 private String contentType; field in class:DSMLServlet
387 contentType = SOAPConstants.SOAP_1_1_CONTENT_TYPE;
390 contentType = SOAPConstants.SOAP_1_2_CONTENT_TYPE;
788 res.setHeader("Content-Type", contentType);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DAssertionIDRequestUtil.java195 String contentType = conn.getContentType();
199 "Content type = " + contentType);
201 if ((contentType == null) ||
202 (contentType.indexOf(MIME_TYPE_ASSERTION) == -1)) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/
H A DAssertionIDRequestUtil.java197 String contentType = conn.getContentType();
201 "Content type = " + contentType);
203 if ((contentType == null) ||
204 (contentType.indexOf(MIME_TYPE_ASSERTION) == -1)) {
/forgerock/opendj-b2.6/resource/dsml/lib/
H A Dsaaj-impl-1.3.jarcom/ com/sun/ com/sun/xml/ com/sun/xml/messaging/ com/sun/xml/messaging/saaj/ com/sun/xml/messaging/ ...

Completed in 87 milliseconds

123