net.java.trueupdate.jms.ci.JndiParametersCi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trueupdate-jms Show documentation
Show all versions of trueupdate-jms Show documentation
Provides services to transmit and receive update messages via JMS.
/*
* 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