blob: 0e57f2a30b65dd3c9381a3c579905d8427c3ffbe [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation
*
* 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.
*/
package org.apache.pluto.descriptors.services.castor;
import org.apache.pluto.descriptors.services.Constants;
import org.apache.pluto.descriptors.services.WebAppDescriptorService;
import org.apache.pluto.descriptors.servlet.WebAppDD;
import org.exolab.castor.mapping.Mapping;
import org.exolab.castor.mapping.MappingException;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
/**
* Abstract Implementation of the Web Application Deployment
* Descriptor service. Provides default implementation of
* the service; requiring only that subclasses provide the
* input streams to/from the actual descriptor.
*
* @author <a href="ddewolf@apache.org">David H. DeWolf</a>
* @version $Id: WebAppDescriptorServiceImpl.java 156743 2005-03-10 05:50:30Z ddewolf $
* @since Mar 5, 2005
*/
public class WebAppDescriptorServiceImpl
extends AbstractCastorDescriptorService
implements WebAppDescriptorService {
public static final String WEB_XML_MAPPING = "castor-web-xml-mapping.xml";
/**
* Read the Web Application Deployment Descriptor.
*
* @return WebAppDD instance representing the descriptor.
* @throws IOException
*/
public WebAppDD read(InputStream in) throws IOException {
WebAppDD webApp = (WebAppDD) readInternal(in);
return webApp;
}
/**
* Write the deployment descriptor.
* @param webApp
* @throws IOException
*/
public void write(WebAppDD webApp, OutputStream out) throws IOException {
writeInternal(webApp, out);
}
/**
* Retrieve the Web Application Deployment
* descriptor's public Id.
* @return
*/
protected String getPublicId() {
return Constants.WEB_XML_PUBLIC_ID;
}
/**
* Retrieve the Web Application Deployment
* descriptor's DTD uri.
* @return
*/
protected String getDTDUri() {
return Constants.WEB_XML_DTD;
}
/**
* Read and Retrieve the Web Application's Castor Mapping
* resource.
*
* @return
* @throws IOException
* @throws MappingException
*/
protected Mapping getCastorMapping()
throws IOException, MappingException {
URL url = getClass().getResource(WEB_XML_MAPPING);
if(url == null)
throw new NullPointerException(
"Configuration Error. Resource: "+WEB_XML_MAPPING+" not found."
);
Mapping mapping = new Mapping();
mapping.loadMapping(url);
return mapping;
}
}