blob: 2951e6a1cc874b0db02a117e7e9da2766fdbf552 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.sling.servlethelpers;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import org.apache.sling.api.request.RequestParameter;
/**
* Mock implementation of {@link RequestParameter}.
*/
class MockRequestParameter implements RequestParameter {
private String name;
private String encoding = "UTF-8";
private String value;
private byte[] content;
public MockRequestParameter(String name, String value) {
this.name = name;
this.value = value;
this.content = null;
}
void setName(String name) {
this.name = name;
}
public String getName() {
return this.name;
}
public void setEncoding(String encoding) {
this.encoding = encoding;
}
public String getEncoding() {
return this.encoding;
}
public byte[] get() {
if (content == null) {
try {
content = getString().getBytes(getEncoding());
} catch (Exception e) {
// UnsupportedEncodingException, IllegalArgumentException
content = getString().getBytes();
}
}
return content;
}
public String getContentType() {
// none known for www-form-encoded parameters
return null;
}
public InputStream getInputStream() {
return new ByteArrayInputStream(this.get());
}
public String getFileName() {
// no original file name
return null;
}
public long getSize() {
return this.get().length;
}
public String getString() {
return value;
}
public String getString(String encoding) throws UnsupportedEncodingException {
return new String(this.get(), encoding);
}
public boolean isFormField() {
// www-form-encoded are always form fields
return true;
}
public String toString() {
return this.getString();
}
}