blob: bfa5e94ec71879400c4e01579d0f81487b305878 [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.websvc.wsitmodelext.security;
import java.util.HashMap;
import javax.xml.namespace.QName;
import java.util.HashSet;
import java.util.Map;
import java.util.Set;
import org.netbeans.modules.websvc.wsitmodelext.versioning.ConfigVersion;
/**
*
* @author Martin Grebac
*/
public enum SecurityQName {
SECPOLID(createSecurityQName("Id")); //NOI18N
public static final String SECURITY_UTILITY_NS_PREFIX = "wsu"; //NOI18N
public static final String SECURITY_UTILITY =
"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"; //NOI18N
public static final String SECURITY_UTILITY_EXT =
"http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"; //NOI18N
public static final String SECURITY_UTILITY_LOCAL =
"nbres:/org/netbeans/modules/websvc/wsitmodelext/catalog/resources/oasis-200401-wss-wssecurity-utility-1.0.xsd"; //NOI18N
public static QName createSecurityQName(String localName){
return new QName(SECURITY_UTILITY, localName, SECURITY_UTILITY_NS_PREFIX);
}
SecurityQName(QName name) {
qName = name;
}
public QName getQName(){
return qName;
}
private static Set<QName> qnames = null;
public static Set<QName> getQNames() {
if (qnames == null) {
qnames = new HashSet<QName>();
for (SecurityQName wq : values()) {
qnames.add(wq.getQName());
}
}
return qnames;
}
private final QName qName;
public Map<String, String> getSchemaLocations(boolean local) {
HashMap<String, String> hmap = new HashMap<String, String>();
hmap.put(SECURITY_UTILITY, getSchemaLocation(SECURITY_UTILITY, local));
return hmap;
}
public String getSchemaLocation(String namespace, boolean local) {
if (SECURITY_UTILITY.equals(namespace)) {
return local ? SECURITY_UTILITY_LOCAL : SECURITY_UTILITY_EXT;
}
return null;
}
}