blob: e8623d2f886def7c15e6a1aab4c70a32dfd62815 [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.netbeans.modules.j2ee.ddloaders.web;
import java.io.IOException;
import org.openide.filesystems.FileObject;
import org.openide.loaders.DataObjectExistsException;
import org.openide.loaders.MultiDataObject;
/**
* A data loader for web.xml version 6.0. Required for providing
* a different action context than for older versions - see #85570.
*
*/
public class DDWeb60DataLoader extends DDDataLoader {
private static final long serialVersionUID = 1L;
public static final String REQUIRED_MIME_60 = "text/x-dd-servlet6.0"; // NOI18N
public DDWeb60DataLoader() {
super("org.netbeans.modules.j2ee.ddloaders.web.DDDataObject"); // NOI18N
}
@Override
protected String actionsContext() {
return "Loaders/text/x-dd-web6.0/Actions/"; // NOI18N
}
@Override
protected String[] getSupportedMimeTypes() {
return new String[]{REQUIRED_MIME_60};
}
@Override
protected MultiDataObject createMultiObject(FileObject primaryFile) throws DataObjectExistsException, IOException {
return createMultiObject(primaryFile, REQUIRED_MIME_60);
}
}