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

net.java.trueupdate.jms.ci.JndiParametersCi Maven / Gradle / Ivy

There is a newer version: 0.8.1
Show newest version
/*
 * Copyright (C) 2013 Schlichtherle IT Services & Stimulus Software.
 * All rights reserved. Use is subject to license terms.
 */
package net.java.trueupdate.jms.ci;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;

/**
 * Represents naming parameters.
 * The strings reference an initial context class and the JNDI name of the
 * context.
 *
 * @author Christian Schlichtherle
 */
@XmlType(name = "JndiParameters", propOrder = { })
@SuppressWarnings("PublicField")
public final class JndiParametersCi {

    @XmlElement(defaultValue = "javax.naming.InitialContext")
    public String initialContextClass;

    public String contextLookup;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy