Package org.jboss.as.clustering.marshalling

Examples of org.jboss.as.clustering.marshalling.SimpleClassTable


    private final Map<Integer, MarshallingConfiguration> configurations = new ConcurrentHashMap<>();

    public SessionAttributeMarshallingContext(Module module) {
        MarshallingConfiguration configuration = MarshallingConfigurationFactory.createMarshallingConfiguration(module.getModuleLoader());
        configuration.setClassTable(new SimpleClassTable(Serializable.class, Externalizable.class));
        this.configurations.put(CURRENT_VERSION, configuration);
    }
View Full Code Here

TOP

Related Classes of org.jboss.as.clustering.marshalling.SimpleClassTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.