public static Entry buildObjectImpl(final FudgeMsg msg) {
Entry e = Entry.WILDCARD;
final Integer ttl = msg.getInt("ttl");
if (ttl != null) {
e = e.activationPeriod(ttl);
}
if (msg.hasField("functionIdentifier")) {
e = e.matchFunctionIdentifier();
}
if (msg.hasField("functionParameters")) {