blob: 994244da6edb4291dd8596795d7eaae6ebd11a01 [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.axiom.om.impl.llom.factory;
import org.apache.axiom.om.OMFactory;
import org.apache.axiom.om.OMXMLParserWrapper;
import org.apache.axiom.om.impl.common.factory.AbstractOMMetaFactory;
import org.apache.axiom.soap.SOAPFactory;
import org.apache.axiom.soap.SOAPMessage;
import org.apache.axiom.soap.impl.llom.SOAPMessageImpl;
import org.apache.axiom.soap.impl.llom.soap11.SOAP11Factory;
import org.apache.axiom.soap.impl.llom.soap12.SOAP12Factory;
/**
* Meta factory for the linked list OM implementation.
*/
public class OMLinkedListMetaFactory extends AbstractOMMetaFactory {
private final OMFactory omFactory = new OMLinkedListImplFactory(this);
private final SOAPFactory soap11Factory = new SOAP11Factory(this);
private final SOAPFactory soap12Factory = new SOAP12Factory(this);
public OMFactory getOMFactory() {
return omFactory;
}
public SOAPFactory getSOAP11Factory() {
return soap11Factory;
}
public SOAPFactory getSOAP12Factory() {
return soap12Factory;
}
public SOAPMessage createSOAPMessage(OMXMLParserWrapper builder) {
return new SOAPMessageImpl(builder, null);
}
public int hashCode() {
return getClass().hashCode();
}
public boolean equals(Object obj) {
// All instances of this class are considered equal. This is only required
// to support legacy code that instantiates OMFactory implementations directly
// (in which case the OMMetaFactory implementation is not guaranteed to be
// a singleton). May be removed in Axiom 1.3.
return obj != null && obj.getClass() == getClass();
}
}