// // Copyright (c)1998-2011 Pearson Education, Inc. or its affiliate(s). // All rights reserved. // package openadk.library; /** * The messaging mode in effect for the agent. Indicates whether the * agent should operate in Push or Pull mode. * @author Andrew * */ public enum AgentMessagingMode { /** * Push Mode messaging */ PUSH, /** * Pull Mode messaging */ PULL }