Tabnine Logo
SessionType
Code IndexAdd Tabnine to your IDE (free)

How to use
SessionType
in
org.ccsds.moims.mo.mal.structures

Best Java code snippets using org.ccsds.moims.mo.mal.structures.SessionType (Showing top 11 results out of 315)

origin: int.esa.ccsds.mo/MAL_IMPL

/**
 * Constructor.
 *
 * @param uri URI.
 * @param domain Domain.
 * @param networkZone Network zone.
 * @param session Session type.
 * @param sessionName Session name.
 */
public AddressKey(final URI uri,
    final IdentifierList domain,
    final String networkZone,
    final SessionType session,
    final String sessionName)
{
 this.uri = uri.getValue();
 this.domain = domain;
 this.networkZone = networkZone;
 this.session = session.getOrdinal();
 this.sessionName = sessionName;
}
origin: int.esa.ccsds.mo/API_COMMON

/**
 * Returns a hash code for this object.
 * @return a hash code value for this object.
 */
public int hashCode()
{
 int hash = 7;
 hash = 83 * hash + (serviceProviderName != null ? serviceProviderName.hashCode() : 0);
 hash = 83 * hash + (domain != null ? domain.hashCode() : 0);
 hash = 83 * hash + (network != null ? network.hashCode() : 0);
 hash = 83 * hash + (sessionType != null ? sessionType.hashCode() : 0);
 hash = 83 * hash + (sessionName != null ? sessionName.hashCode() : 0);
 hash = 83 * hash + (serviceKey != null ? serviceKey.hashCode() : 0);
 hash = 83 * hash + (requiredCapabilities != null ? requiredCapabilities.hashCode() : 0);
 return hash;
}
origin: int.esa.ccsds.mo/TRANSPORT_JMS

String exchangeName = providerExchangeName + ":" + msg.getHeader().getSession().toString() + ":" + msg.getHeader().getSessionName();
Topic dest = jtransport.getAdministrator().getTopic(lqs, exchangeName);
origin: int.esa.ccsds.mo/API_COMMON

if (! sessionType.equals(other.sessionType))
origin: int.esa.ccsds.mo/TRANSPORT_TCPIP

header.setIsErrorMessage((((parts & 0x80) >> 7) == 0x1));
header.setQoSlevel(QoSLevel.fromOrdinal(((parts & 0x70) >> 4)));
header.setSession(SessionType.fromOrdinal(parts & 0xF));
Long transactionId = ((TCPIPFixedBinaryDecoder) dec).decodeMALLong();
header.setTransactionId(transactionId);
origin: int.esa.ccsds.mo/TRANSPORT_JMS

String exchangeName = providerExchangeName + ":" + msg.getHeader().getSession().toString() + ":" + msg.getHeader().getSessionName();
String ldomain = StructureHelper.domainToString(msg.getHeader().getDomain());
String lnetwork = msg.getHeader().getNetworkZone().getValue();
origin: int.esa.ccsds.mo/API_COMMON

if (! sessionType.equals(other.sessionType))
origin: int.esa.ccsds.mo/MAL_IMPL

/**
 * Constructor.
 * @param hdr Source message.
 */
public BrokerKey(final MALMessageHeader hdr)
{
 this.uri = hdr.getURITo().getValue();
 this.session = hdr.getSession().getOrdinal();
 this.sessionName = hdr.getSessionName().getValue();
}
origin: int.esa.ccsds.mo/API_COMMON

/**
 * Returns a hash code for this object.
 * @return a hash code value for this object.
 */
public int hashCode()
{
 int hash = 7;
 hash = 83 * hash + (providerName != null ? providerName.hashCode() : 0);
 hash = 83 * hash + (domain != null ? domain.hashCode() : 0);
 hash = 83 * hash + (sessionType != null ? sessionType.hashCode() : 0);
 hash = 83 * hash + (sourceSessionName != null ? sourceSessionName.hashCode() : 0);
 hash = 83 * hash + (network != null ? network.hashCode() : 0);
 hash = 83 * hash + (providerDetails != null ? providerDetails.hashCode() : 0);
 hash = 83 * hash + (serviceXML != null ? serviceXML.hashCode() : 0);
 return hash;
}
origin: int.esa.ccsds.mo/MAL_IMPL

/**
 * Constructor.
 *
 * @param hdr Source message.
 */
public AddressKey(final MALMessageHeader hdr)
{
 this.uri = hdr.getURITo().getValue();
 this.domain = hdr.getDomain();
 this.networkZone = hdr.getNetworkZone().getValue();
 this.session = hdr.getSession().getOrdinal();
 this.sessionName = hdr.getSessionName().getValue();
}
origin: int.esa.ccsds.mo/TRANSPORT_TCPIP

| header.getSession().getOrdinal());
org.ccsds.moims.mo.mal.structuresSessionType

Most used methods

  • getOrdinal
  • equals
  • fromOrdinal
  • hashCode
  • toString

Popular in Java

  • Reactive rest calls using spring rest template
  • scheduleAtFixedRate (Timer)
  • requestLocationUpdates (LocationManager)
  • notifyDataSetChanged (ArrayAdapter)
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • Reference (javax.naming)
  • Join (org.hibernate.mapping)
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now