Search in sources :

Example 81 with Build

use of io.fabric8.openshift.api.model.Build in project fabric8 by jboss-fuse.

the class ProducerIdMarshaller method looseUnmarshal.

/**
 * 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, DataByteArrayInputStream dataIn) throws IOException {
    super.looseUnmarshal(wireFormat, o, dataIn);
    ProducerId info = (ProducerId) o;
    info.setConnectionId(looseUnmarshalString(dataIn));
    info.setValue(looseUnmarshalLong(wireFormat, dataIn));
    info.setSessionId(looseUnmarshalLong(wireFormat, dataIn));
}
Also used : ProducerId(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.ProducerId)

Example 82 with Build

use of io.fabric8.openshift.api.model.Build in project fabric8 by jboss-fuse.

the class ProducerIdMarshaller method tightUnmarshal.

/**
 * 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 tightUnmarshal(OpenWireFormat wireFormat, Object o, DataByteArrayInputStream dataIn, BooleanStream bs) throws IOException {
    super.tightUnmarshal(wireFormat, o, dataIn, bs);
    ProducerId info = (ProducerId) o;
    info.setConnectionId(tightUnmarshalString(dataIn, bs));
    info.setValue(tightUnmarshalLong(wireFormat, dataIn, bs));
    info.setSessionId(tightUnmarshalLong(wireFormat, dataIn, bs));
}
Also used : ProducerId(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.ProducerId)

Example 83 with Build

use of io.fabric8.openshift.api.model.Build in project fabric8 by jboss-fuse.

the class ProducerInfoMarshaller method looseUnmarshal.

/**
 * 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, DataByteArrayInputStream dataIn) throws IOException {
    super.looseUnmarshal(wireFormat, o, dataIn);
    ProducerInfo info = (ProducerInfo) o;
    info.setProducerId((ProducerId) looseUnmarsalCachedObject(wireFormat, dataIn));
    info.setDestination((ActiveMQDestination) looseUnmarsalCachedObject(wireFormat, dataIn));
    if (dataIn.readBoolean()) {
        short size = dataIn.readShort();
        BrokerId[] value = new BrokerId[size];
        for (int i = 0; i < size; i++) {
            value[i] = (BrokerId) looseUnmarsalNestedObject(wireFormat, dataIn);
        }
        info.setBrokerPath(value);
    } else {
        info.setBrokerPath(null);
    }
}
Also used : ProducerInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.ProducerInfo) BrokerId(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.BrokerId)

Example 84 with Build

use of io.fabric8.openshift.api.model.Build in project fabric8 by jboss-fuse.

the class RemoveInfoMarshaller method looseUnmarshal.

/**
 * 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, DataByteArrayInputStream dataIn) throws IOException {
    super.looseUnmarshal(wireFormat, o, dataIn);
    RemoveInfo info = (RemoveInfo) o;
    info.setObjectId((DataStructure) looseUnmarsalCachedObject(wireFormat, dataIn));
}
Also used : RemoveInfo(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.RemoveInfo)

Example 85 with Build

use of io.fabric8.openshift.api.model.Build in project fabric8 by jboss-fuse.

the class ReplayCommandMarshaller method looseUnmarshal.

/**
 * 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, DataByteArrayInputStream dataIn) throws IOException {
    super.looseUnmarshal(wireFormat, o, dataIn);
    ReplayCommand info = (ReplayCommand) o;
    info.setFirstNakNumber(dataIn.readInt());
    info.setLastNakNumber(dataIn.readInt());
}
Also used : ReplayCommand(io.fabric8.gateway.handlers.detecting.protocol.openwire.command.ReplayCommand)

Aggregations

Test (org.junit.Test)255 ArrayList (java.util.ArrayList)74 BuildImageConfiguration (io.fabric8.maven.docker.config.BuildImageConfiguration)69 ImageConfiguration (io.fabric8.maven.docker.config.ImageConfiguration)68 HashMap (java.util.HashMap)66 File (java.io.File)53 ConfigMap (io.fabric8.kubernetes.api.model.ConfigMap)51 IOException (java.io.IOException)50 ConfigMapBuilder (io.fabric8.kubernetes.api.model.ConfigMapBuilder)45 Pod (io.fabric8.kubernetes.api.model.Pod)37 Map (java.util.Map)35 Service (io.fabric8.kubernetes.api.model.Service)34 FabricService (io.fabric8.api.FabricService)33 ResourceConfig (io.fabric8.maven.core.config.ResourceConfig)30 Container (io.fabric8.api.Container)29 RunImageConfiguration (io.fabric8.maven.docker.config.RunImageConfiguration)28 PodBuilder (io.fabric8.kubernetes.api.model.PodBuilder)27 List (java.util.List)26 ServicePortBuilder (io.fabric8.kubernetes.api.model.ServicePortBuilder)25 OpenShiftClient (io.fabric8.openshift.client.OpenShiftClient)25