All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.cxf.aegis.Context Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
/**
 * 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.cxf.aegis;

import java.util.Collection;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;

import org.apache.cxf.aegis.type.TypeMapping;
import org.apache.cxf.interceptor.Fault;
import org.apache.cxf.message.Attachment;

/**
 * Holds inforrmation about the message request and response.
 * 
 * @author Dan Diephouse
 * @since Feb 13, 2004
 */
public class Context implements Map {
    private TypeMapping typeMapping;
    private Collection attachments;
    private boolean writeXsiTypes;
    private boolean readXsiTypes = true;
    private List overrideTypes;
    private Fault fault;
    private Map properties;
    
    public Context() {
       this(new HashMap());
    }

    public Context(Map properties) {
        this.properties = properties;
    }

    public Context(boolean initProps) {
        if (initProps) {
            this.properties = new HashMap();
        }
    }

    public TypeMapping getTypeMapping() {
        return typeMapping;
    }

    public void setTypeMapping(TypeMapping typeMapping) {
        this.typeMapping = typeMapping;
    }

    public Collection getAttachments() {
        return attachments;
    }

    public void setAttachments(Collection attachments) {
        this.attachments = attachments;
    }

    public boolean isWriteXsiTypes() {
        return writeXsiTypes;
    }

    public void setWriteXsiTypes(boolean writeXsiTypes) {
        this.writeXsiTypes = writeXsiTypes;
    }

    public boolean isReadXsiTypes() {
        return readXsiTypes;
    }

    public void setReadXsiTypes(boolean readXsiTypes) {
        this.readXsiTypes = readXsiTypes;
    }

    public List getOverrideTypes() {
        return overrideTypes;
    }

    public void setOverrideTypes(List overrideTypes) {
        this.overrideTypes = overrideTypes;
    }

    public void setFault(Fault fault) {
        this.fault = fault;
    }

    public Fault getFault() {
        return fault;
    }

    public void clear() {
        // TODO Auto-generated method stub
        
    }

    public boolean containsKey(Object key) {
        // TODO Auto-generated method stub
        return false;
    }

    public boolean containsValue(Object value) {
        // TODO Auto-generated method stub
        return false;
    }

    public Set> entrySet() {
        // TODO Auto-generated method stub
        return null;
    }

    public Object get(Object key) {
        return properties.get(key);
    }

    public boolean isEmpty() {
        return properties.isEmpty();
    }

    public Set keySet() {
        return properties.keySet();
    }

    public Object put(String key, Object value) {
        return properties.put(key, value);
    }

    public void putAll(Map t) {
        properties.putAll(t);
    }

    public Object remove(Object key) {
        return properties.remove(key);
    }

    public int size() {
        return properties.size();
    }

    public Collection values() {
        return properties.values();
    }

    public void setDelegateProperties(Map p) {
        this.properties = p;
    }
    
    
}