/* * JBoss, Home of Professional Open Source. * Copyright 2006, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.controller.client.impl; /** * * @author <a href="kabir.khan@jboss.com">Kabir Khan</a> * @version $Revision: 1.1 $ */ public interface ModelControllerProtocol { byte CLOSE_INPUTSTREAM_REQUEST = 0x44; byte EXECUTE_ASYNC_CLIENT_REQUEST = 0x45; byte EXECUTE_CLIENT_REQUEST = 0x46; byte EXECUTE_TX_REQUEST = 0x47; byte HANDLE_REPORT_REQUEST = 0x48; byte GET_INPUTSTREAM_REQUEST = 0x4C; byte CANCEL_ASYNC_REQUEST = 0x4D; byte COMPLETE_TX_REQUEST = 0x4E; // This was never used in a .Final release, so byte can be re-used //byte GET_SUBJECT_REQUEST = 0x4F; byte GET_CHUNKED_INPUTSTREAM_REQUEST = 0x4F; // This was never used in a .Final release before WF 9, so it's repurposed now byte PARAM_END = 0x60; byte PARAM_OPERATION = 0x61; byte PARAM_MESSAGE_SEVERITY = 0x62; byte PARAM_MESSAGE = 0x63; byte PARAM_RESPONSE = 0x64; byte PARAM_INPUTSTREAMS_LENGTH = 0x65; byte PARAM_INPUTSTREAM_INDEX = 0x66; byte PARAM_INPUTSTREAM_LENGTH = 0x67; byte PARAM_INPUTSTREAM_CONTENTS = 0x68; // This was never used in a .Final release, so byte can be re-used //byte PARAM_PREPARED = 0x69; byte PARAM_COMMIT = 0x70; byte PARAM_ROLLBACK = 0x71; // The tx response params byte PARAM_OPERATION_FAILED = 0x49; byte PARAM_OPERATION_COMPLETED = 0x4A; byte PARAM_OPERATION_PREPARED = 0x4B; // The Subject params byte PARAM_SUBJECT_LENGTH = 0x50; }