Codota Logo
ConnectionInfoMarshaller
Code IndexAdd Codota to your IDE (free)

How to use
ConnectionInfoMarshaller
in
org.apache.activemq.openwire.v3

Best Java code snippets using org.apache.activemq.openwire.v3.ConnectionInfoMarshaller (Showing top 16 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Charset c =
  • Codota IconString charsetName;Charset.forName(charsetName)
  • Codota IconCharset.defaultCharset()
  • Codota IconContentType contentType;contentType.getCharset()
  • Smart code suggestions by Codota
}
origin: apache/activemq

  /**
   * Write the booleans that this object uses to a BooleanStream
   */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {

    ConnectionInfo info = (ConnectionInfo)o;

    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, (DataStructure)info.getConnectionId(), dataOut);
    looseMarshalString(info.getClientId(), dataOut);
    looseMarshalString(info.getPassword(), dataOut);
    looseMarshalString(info.getUserName(), dataOut);
    looseMarshalObjectArray(wireFormat, info.getBrokerPath(), dataOut);
    dataOut.writeBoolean(info.isBrokerMasterConnector());
    dataOut.writeBoolean(info.isManageable());
    dataOut.writeBoolean(info.isClientMaster());

  }
}
origin: apache/activemq

/**
 * Un-marshal an object instance from the data input stream
 * 
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  ConnectionInfo info = (ConnectionInfo)o;
  info.setConnectionId((org.apache.activemq.command.ConnectionId)looseUnmarsalCachedObject(wireFormat,
                                               dataIn));
  info.setClientId(looseUnmarshalString(dataIn));
  info.setPassword(looseUnmarshalString(dataIn));
  info.setUserName(looseUnmarshalString(dataIn));
  if (dataIn.readBoolean()) {
    short size = dataIn.readShort();
    org.apache.activemq.command.BrokerId value[] = new org.apache.activemq.command.BrokerId[size];
    for (int i = 0; i < size; i++) {
      value[i] = (org.apache.activemq.command.BrokerId)looseUnmarsalNestedObject(wireFormat, dataIn);
    }
    info.setBrokerPath(value);
  } else {
    info.setBrokerPath(null);
  }
  info.setBrokerMasterConnector(dataIn.readBoolean());
  info.setManageable(dataIn.readBoolean());
  info.setClientMaster(dataIn.readBoolean());
}
origin: apache/activemq

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
  ConnectionInfo info = (ConnectionInfo)o;
  int rc = super.tightMarshal1(wireFormat, o, bs);
  rc += tightMarshalCachedObject1(wireFormat, (DataStructure)info.getConnectionId(), bs);
  rc += tightMarshalString1(info.getClientId(), bs);
  rc += tightMarshalString1(info.getPassword(), bs);
  rc += tightMarshalString1(info.getUserName(), bs);
  rc += tightMarshalObjectArray1(wireFormat, info.getBrokerPath(), bs);
  bs.writeBoolean(info.isBrokerMasterConnector());
  bs.writeBoolean(info.isManageable());
  bs.writeBoolean(info.isClientMaster());
  return rc + 0;
}
origin: apache/activemq

/**
 * Write a object instance to data output stream
 * 
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs)
  throws IOException {
  super.tightMarshal2(wireFormat, o, dataOut, bs);
  ConnectionInfo info = (ConnectionInfo)o;
  tightMarshalCachedObject2(wireFormat, (DataStructure)info.getConnectionId(), dataOut, bs);
  tightMarshalString2(info.getClientId(), dataOut, bs);
  tightMarshalString2(info.getPassword(), dataOut, bs);
  tightMarshalString2(info.getUserName(), dataOut, bs);
  tightMarshalObjectArray2(wireFormat, info.getBrokerPath(), dataOut, bs);
  bs.readBoolean();
  bs.readBoolean();
  bs.readBoolean();
}
origin: pierre/meteo

/**
 * Write a object instance to data output stream
 * 
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs)
  throws IOException {
  super.tightMarshal2(wireFormat, o, dataOut, bs);
  ConnectionInfo info = (ConnectionInfo)o;
  tightMarshalCachedObject2(wireFormat, (DataStructure)info.getConnectionId(), dataOut, bs);
  tightMarshalString2(info.getClientId(), dataOut, bs);
  tightMarshalString2(info.getPassword(), dataOut, bs);
  tightMarshalString2(info.getUserName(), dataOut, bs);
  tightMarshalObjectArray2(wireFormat, info.getBrokerPath(), dataOut, bs);
  bs.readBoolean();
  bs.readBoolean();
  bs.readBoolean();
}
origin: org.apache.activemq/activemq-all

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
  ConnectionInfo info = (ConnectionInfo)o;
  int rc = super.tightMarshal1(wireFormat, o, bs);
  rc += tightMarshalCachedObject1(wireFormat, (DataStructure)info.getConnectionId(), bs);
  rc += tightMarshalString1(info.getClientId(), bs);
  rc += tightMarshalString1(info.getPassword(), bs);
  rc += tightMarshalString1(info.getUserName(), bs);
  rc += tightMarshalObjectArray1(wireFormat, info.getBrokerPath(), bs);
  bs.writeBoolean(info.isBrokerMasterConnector());
  bs.writeBoolean(info.isManageable());
  bs.writeBoolean(info.isClientMaster());
  return rc + 0;
}
origin: org.apache.activemq/activemq-all

  /**
   * Write the booleans that this object uses to a BooleanStream
   */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {

    ConnectionInfo info = (ConnectionInfo)o;

    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, (DataStructure)info.getConnectionId(), dataOut);
    looseMarshalString(info.getClientId(), dataOut);
    looseMarshalString(info.getPassword(), dataOut);
    looseMarshalString(info.getUserName(), dataOut);
    looseMarshalObjectArray(wireFormat, info.getBrokerPath(), dataOut);
    dataOut.writeBoolean(info.isBrokerMasterConnector());
    dataOut.writeBoolean(info.isManageable());
    dataOut.writeBoolean(info.isClientMaster());

  }
}
origin: org.apache.activemq/activemq-osgi

/**
 * Write a object instance to data output stream
 * 
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs)
  throws IOException {
  super.tightMarshal2(wireFormat, o, dataOut, bs);
  ConnectionInfo info = (ConnectionInfo)o;
  tightMarshalCachedObject2(wireFormat, (DataStructure)info.getConnectionId(), dataOut, bs);
  tightMarshalString2(info.getClientId(), dataOut, bs);
  tightMarshalString2(info.getPassword(), dataOut, bs);
  tightMarshalString2(info.getUserName(), dataOut, bs);
  tightMarshalObjectArray2(wireFormat, info.getBrokerPath(), dataOut, bs);
  bs.readBoolean();
  bs.readBoolean();
  bs.readBoolean();
}
origin: org.apache.activemq/activemq-all

/**
 * Un-marshal an object instance from the data input stream
 * 
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  ConnectionInfo info = (ConnectionInfo)o;
  info.setConnectionId((org.apache.activemq.command.ConnectionId)looseUnmarsalCachedObject(wireFormat,
                                               dataIn));
  info.setClientId(looseUnmarshalString(dataIn));
  info.setPassword(looseUnmarshalString(dataIn));
  info.setUserName(looseUnmarshalString(dataIn));
  if (dataIn.readBoolean()) {
    short size = dataIn.readShort();
    org.apache.activemq.command.BrokerId value[] = new org.apache.activemq.command.BrokerId[size];
    for (int i = 0; i < size; i++) {
      value[i] = (org.apache.activemq.command.BrokerId)looseUnmarsalNestedObject(wireFormat, dataIn);
    }
    info.setBrokerPath(value);
  } else {
    info.setBrokerPath(null);
  }
  info.setBrokerMasterConnector(dataIn.readBoolean());
  info.setManageable(dataIn.readBoolean());
  info.setClientMaster(dataIn.readBoolean());
}
origin: pierre/meteo

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
  ConnectionInfo info = (ConnectionInfo)o;
  int rc = super.tightMarshal1(wireFormat, o, bs);
  rc += tightMarshalCachedObject1(wireFormat, (DataStructure)info.getConnectionId(), bs);
  rc += tightMarshalString1(info.getClientId(), bs);
  rc += tightMarshalString1(info.getPassword(), bs);
  rc += tightMarshalString1(info.getUserName(), bs);
  rc += tightMarshalObjectArray1(wireFormat, info.getBrokerPath(), bs);
  bs.writeBoolean(info.isBrokerMasterConnector());
  bs.writeBoolean(info.isManageable());
  bs.writeBoolean(info.isClientMaster());
  return rc + 0;
}
origin: org.apache.activemq/activemq-osgi

  /**
   * Write the booleans that this object uses to a BooleanStream
   */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {

    ConnectionInfo info = (ConnectionInfo)o;

    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, (DataStructure)info.getConnectionId(), dataOut);
    looseMarshalString(info.getClientId(), dataOut);
    looseMarshalString(info.getPassword(), dataOut);
    looseMarshalString(info.getUserName(), dataOut);
    looseMarshalObjectArray(wireFormat, info.getBrokerPath(), dataOut);
    dataOut.writeBoolean(info.isBrokerMasterConnector());
    dataOut.writeBoolean(info.isManageable());
    dataOut.writeBoolean(info.isClientMaster());

  }
}
origin: org.apache.activemq/activemq-all

/**
 * Write a object instance to data output stream
 * 
 * @param o the instance to be marshaled
 * @param dataOut the output stream
 * @throws IOException thrown if an error occurs
 */
public void tightMarshal2(OpenWireFormat wireFormat, Object o, DataOutput dataOut, BooleanStream bs)
  throws IOException {
  super.tightMarshal2(wireFormat, o, dataOut, bs);
  ConnectionInfo info = (ConnectionInfo)o;
  tightMarshalCachedObject2(wireFormat, (DataStructure)info.getConnectionId(), dataOut, bs);
  tightMarshalString2(info.getClientId(), dataOut, bs);
  tightMarshalString2(info.getPassword(), dataOut, bs);
  tightMarshalString2(info.getUserName(), dataOut, bs);
  tightMarshalObjectArray2(wireFormat, info.getBrokerPath(), dataOut, bs);
  bs.readBoolean();
  bs.readBoolean();
  bs.readBoolean();
}
origin: pierre/meteo

/**
 * Un-marshal an object instance from the data input stream
 * 
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  ConnectionInfo info = (ConnectionInfo)o;
  info.setConnectionId((org.apache.activemq.command.ConnectionId)looseUnmarsalCachedObject(wireFormat,
                                               dataIn));
  info.setClientId(looseUnmarshalString(dataIn));
  info.setPassword(looseUnmarshalString(dataIn));
  info.setUserName(looseUnmarshalString(dataIn));
  if (dataIn.readBoolean()) {
    short size = dataIn.readShort();
    org.apache.activemq.command.BrokerId value[] = new org.apache.activemq.command.BrokerId[size];
    for (int i = 0; i < size; i++) {
      value[i] = (org.apache.activemq.command.BrokerId)looseUnmarsalNestedObject(wireFormat, dataIn);
    }
    info.setBrokerPath(value);
  } else {
    info.setBrokerPath(null);
  }
  info.setBrokerMasterConnector(dataIn.readBoolean());
  info.setManageable(dataIn.readBoolean());
  info.setClientMaster(dataIn.readBoolean());
}
origin: org.apache.activemq/activemq-osgi

/**
 * Write the booleans that this object uses to a BooleanStream
 */
public int tightMarshal1(OpenWireFormat wireFormat, Object o, BooleanStream bs) throws IOException {
  ConnectionInfo info = (ConnectionInfo)o;
  int rc = super.tightMarshal1(wireFormat, o, bs);
  rc += tightMarshalCachedObject1(wireFormat, (DataStructure)info.getConnectionId(), bs);
  rc += tightMarshalString1(info.getClientId(), bs);
  rc += tightMarshalString1(info.getPassword(), bs);
  rc += tightMarshalString1(info.getUserName(), bs);
  rc += tightMarshalObjectArray1(wireFormat, info.getBrokerPath(), bs);
  bs.writeBoolean(info.isBrokerMasterConnector());
  bs.writeBoolean(info.isManageable());
  bs.writeBoolean(info.isClientMaster());
  return rc + 0;
}
origin: pierre/meteo

  /**
   * Write the booleans that this object uses to a BooleanStream
   */
  public void looseMarshal(OpenWireFormat wireFormat, Object o, DataOutput dataOut) throws IOException {

    ConnectionInfo info = (ConnectionInfo)o;

    super.looseMarshal(wireFormat, o, dataOut);
    looseMarshalCachedObject(wireFormat, (DataStructure)info.getConnectionId(), dataOut);
    looseMarshalString(info.getClientId(), dataOut);
    looseMarshalString(info.getPassword(), dataOut);
    looseMarshalString(info.getUserName(), dataOut);
    looseMarshalObjectArray(wireFormat, info.getBrokerPath(), dataOut);
    dataOut.writeBoolean(info.isBrokerMasterConnector());
    dataOut.writeBoolean(info.isManageable());
    dataOut.writeBoolean(info.isClientMaster());

  }
}
origin: org.apache.activemq/activemq-osgi

/**
 * Un-marshal an object instance from the data input stream
 * 
 * @param o the object to un-marshal
 * @param dataIn the data input stream to build the object from
 * @throws IOException
 */
public void looseUnmarshal(OpenWireFormat wireFormat, Object o, DataInput dataIn) throws IOException {
  super.looseUnmarshal(wireFormat, o, dataIn);
  ConnectionInfo info = (ConnectionInfo)o;
  info.setConnectionId((org.apache.activemq.command.ConnectionId)looseUnmarsalCachedObject(wireFormat,
                                               dataIn));
  info.setClientId(looseUnmarshalString(dataIn));
  info.setPassword(looseUnmarshalString(dataIn));
  info.setUserName(looseUnmarshalString(dataIn));
  if (dataIn.readBoolean()) {
    short size = dataIn.readShort();
    org.apache.activemq.command.BrokerId value[] = new org.apache.activemq.command.BrokerId[size];
    for (int i = 0; i < size; i++) {
      value[i] = (org.apache.activemq.command.BrokerId)looseUnmarsalNestedObject(wireFormat, dataIn);
    }
    info.setBrokerPath(value);
  } else {
    info.setBrokerPath(null);
  }
  info.setBrokerMasterConnector(dataIn.readBoolean());
  info.setManageable(dataIn.readBoolean());
  info.setClientMaster(dataIn.readBoolean());
}
org.apache.activemq.openwire.v3ConnectionInfoMarshaller

Javadoc

Marshalling code for Open Wire Format for ConnectionInfoMarshaller NOTE!: This file is auto generated - do not modify! if you need to make a change, please see the modify the groovy scripts in the under src/gram/script and then use maven openwire:generate to regenerate this file.

Most used methods

  • looseMarshalCachedObject
  • looseMarshalObjectArray
  • looseMarshalString
  • looseUnmarsalCachedObject
  • looseUnmarsalNestedObject
  • looseUnmarshalString
  • tightMarshalCachedObject1
  • tightMarshalCachedObject2
  • tightMarshalObjectArray1
  • tightMarshalObjectArray2
  • tightMarshalString1
  • tightMarshalString2
  • tightMarshalString1,
  • tightMarshalString2,
  • tightUnmarsalCachedObject,
  • tightUnmarsalNestedObject,
  • tightUnmarshalString

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • getContentResolver (Context)
  • runOnUiThread (Activity)
  • FileWriter (java.io)
    Convenience class for writing character files. The constructors of this class assume that the defaul
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • BigInteger (java.math)
    Immutable arbitrary-precision integers. All operations behave as if BigIntegers were represented in
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • JLabel (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now