Searched defs:maxContentLength (Results 1 - 6 of 6) sorted by relevance

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/common/
H A DRequestUtils.java57 private static int maxContentLength = getMaxContentLength(); field in class:RequestUtils
123 if (length > maxContentLength) {
125 new Integer(maxContentLength) };
135 * Get the maxContentLength.
140 int maxContentLength = 16384;
142 // get the maxContentLength from properties file
147 maxContentLength = Integer.parseInt(maxContentLengthProp);
151 "maxContentLength [" + maxContentLengthProp + "] property");
155 return maxContentLength;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/common/
H A DRequestUtils.java57 private static int maxContentLength = getMaxContentLength(); field in class:RequestUtils
123 if (length > maxContentLength) {
125 new Integer(maxContentLength) };
135 * Get the maxContentLength.
140 int maxContentLength = 16384;
142 // get the maxContentLength from properties file
147 maxContentLength = Integer.parseInt(maxContentLengthProp);
151 "maxContentLength [" + maxContentLengthProp + "] property");
155 return maxContentLength;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/server/
H A DPLLRequestServlet.java74 private static int maxContentLength = 16384; field in class:PLLRequestServlet
80 PROPERTY_MAX_CONTENT_LENGTH, String.valueOf(maxContentLength));
82 maxContentLength = Integer.parseInt(maxContentLengthProp);
113 if (length > maxContentLength) {
/forgerock/openam/openam-core/src/main/java/com/iplanet/services/comm/server/
H A DPLLRequestServlet.java74 private static int maxContentLength = 16384; field in class:PLLRequestServlet
80 PROPERTY_MAX_CONTENT_LENGTH, String.valueOf(maxContentLength));
82 maxContentLength = Integer.parseInt(maxContentLengthProp);
113 if (length > maxContentLength) {
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/
H A DSAMLUtils.java113 "com.sun.identity.saml.request.maxContentLength";
128 private static int maxContentLength = 0; field in class:SAMLUtils
155 maxContentLength = Integer.parseInt(SystemConfigurationUtil.
161 maxContentLength= SAMLUtils.defaultMaxLength;
672 return maxContentLength;
691 if (maxContentLength != 0) {
696 if (length > maxContentLength) {
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/common/
H A DSAMLUtils.java115 "com.sun.identity.saml.request.maxContentLength";
130 private static int maxContentLength = 0; field in class:SAMLUtils
157 maxContentLength = Integer.parseInt(SystemConfigurationUtil.
163 maxContentLength= SAMLUtils.defaultMaxLength;
674 return maxContentLength;
693 if (maxContentLength != 0) {
698 if (length > maxContentLength) {

Completed in 57 milliseconds