net.java.trueupdate.jms.ci.JmsParametersCi 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 messaging parameters.
* The strings are used as JNDI names for looking up JMS administered objects.
*
* @author Christian Schlichtherle
*/
@XmlType(name = "JmsParameters", propOrder = { })
@SuppressWarnings("PublicField")
public final class JmsParametersCi {
public JndiParametersCi naming;
@XmlElement(required = true)
public String connectionFactory, from;
public String to;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy