Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/com/sun/pept/ept/MessageInfo.java
38923 views
/*1* Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425/** Java interface "MessageInfo.java" generated from Poseidon for UML.26* Poseidon for UML is developed by <A HREF="http://www.gentleware.com">Gentleware</A>.27* Generated with <A HREF="http://jakarta.apache.org/velocity/">velocity</A> template engine.28*/29package com.sun.pept.ept;3031import com.sun.pept.encoding.Decoder;32import com.sun.pept.encoding.Encoder;33import com.sun.pept.presentation.MessageStruct;34import com.sun.pept.protocol.MessageDispatcher;35import com.sun.pept.transport.Connection;36import java.util.*;3738/**39* <p>40*41* @author Dr. Harold Carr42* </p>43*/44public interface MessageInfo extends MessageStruct {4546///////////////////////////////////////47// operations4849/**50* <p>51* Does ...52* </p><p>53*54* @return a EPTFactory with ...55* </p>56*/57public EPTFactory getEPTFactory();58/**59* <p>60* Does ...61* </p><p>62*63* @return a MessageDispatcher with ...64* </p>65*/66public MessageDispatcher getMessageDispatcher();67/**68* <p>69* Does ...70* </p><p>71*72* @return a Encoder with ...73* </p>74*/75public Encoder getEncoder();76/**77* <p>78* Does ...79* </p><p>80*81* @return a Decoder with ...82* </p>83*/84public Decoder getDecoder();85/**86* <p>87* Does ...88* </p><p>89*90* @return a Connection with ...91* </p>92*/93public Connection getConnection();94/**95* <p>96* Does ...97* </p><p>98*99* </p><p>100*101* @param eptFactory ...102* </p>103*/104public void setEPTFactory(EPTFactory eptFactory);105/**106* <p>107* Does ...108* </p><p>109*110* </p><p>111*112* @param messageDispatcher ...113* </p>114*/115public void setMessageDispatcher(MessageDispatcher messageDispatcher);116/**117* <p>118* Does ...119* </p><p>120*121* </p><p>122*123* @param encoder ...124* </p>125*/126public void setEncoder(Encoder encoder);127/**128* <p>129* Does ...130* </p><p>131*132* </p><p>133*134* @param decoder ...135* </p>136*/137public void setDecoder(Decoder decoder);138/**139* <p>140* Does ...141* </p><p>142*143* </p><p>144*145* @param connection ...146* </p>147*/148public void setConnection(Connection connection);149150} // end MessageInfo151152153