io.konig.ldp.impl.LdpRequestImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of konig-ldp Show documentation
Show all versions of konig-ldp Show documentation
An implementation of the W3C Linked Data Platform
The newest version!
package io.konig.ldp.impl;
/*
* #%L
* Konig Linked Data Platform
* %%
* Copyright (C) 2015 - 2016 Gregory McFall
* %%
* Licensed 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.
* #L%
*/
import java.util.Map;
import io.konig.ldp.AcceptList;
import io.konig.ldp.HttpMethod;
import io.konig.ldp.LdpRequest;
import io.konig.ldp.RdfSource;
import io.konig.ldp.ResourceFile;
import io.konig.ldp.ResourceType;
public class LdpRequestImpl implements LdpRequest {
private HttpMethod method;
private String resourceId;
private AcceptList acceptList;
private byte[] body;
private String contentType;
private String slug;
public LdpRequestImpl(HttpMethod method, String resourceId, AcceptList acceptList, byte[] body,
Map headerMap) {
this.method = method;
this.resourceId = resourceId;
this.acceptList = acceptList;
this.contentType = headerMap.get("Content-Type");
this.body = body;
}
@Override
public HttpMethod getMethod() {
return method;
}
@Override
public String getResourceId() {
return resourceId;
}
@Override
public AcceptList getAcceptList() {
return acceptList;
}
@Override
public byte[] getEntityBody() {
return body;
}
@Override
public String getSlug() {
return slug;
}
@Override
public String getContentType() {
return contentType;
}
@Override
public void setContentType(String contentType) {
this.contentType = contentType;
}
@Override
public RdfSource asRdfSource() {
return new RdfSourceImpl(getResourceId(), getContentType(), ResourceType.RDFSource, getEntityBody());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy