use of org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.oxm.container.match.entry.value.OfInPortCaseValueBuilder in project openflowplugin by opendaylight.
the class NxmInPortConvertor method convert.
@Override
public MatchEntry convert(Extension extension) {
Optional<NxmOfInPortGrouping> matchGrouping = MatchUtil.NXM_OF_INPORT_RESOLVER.getExtension(extension);
if (!matchGrouping.isPresent()) {
throw new CodecPreconditionException(extension);
}
Integer value = matchGrouping.get().getOfInPort().getValue();
OfInPortCaseValueBuilder inPortCaseValueBuilder = new OfInPortCaseValueBuilder();
inPortCaseValueBuilder.setNxmOfInPortValues(new NxmOfInPortValuesBuilder().setValue(value).build());
return MatchUtil.createDefaultMatchEntryBuilder(org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.NxmOfInPort.class, Nxm0Class.class, inPortCaseValueBuilder.build()).build();
}
use of org.opendaylight.yang.gen.v1.urn.opendaylight.openflowjava.nx.match.rev140421.oxm.container.match.entry.value.OfInPortCaseValueBuilder in project openflowplugin by opendaylight.
the class InPortCodec method deserialize.
@Override
public MatchEntry deserialize(ByteBuf message) {
MatchEntryBuilder matchEntryBuilder = deserializeHeaderToBuilder(message);
OfInPortCaseValueBuilder caseBuilder = new OfInPortCaseValueBuilder();
NxmOfInPortValuesBuilder valuesBuilder = new NxmOfInPortValuesBuilder();
valuesBuilder.setValue(message.readInt()).build();
caseBuilder.setNxmOfInPortValues(valuesBuilder.build());
matchEntryBuilder.setMatchEntryValue(caseBuilder.build());
return matchEntryBuilder.build();
}
Aggregations