blob: cd841d991a6ec9f5e7b666d988eff94a83f7c355 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.yoko.orb.OCI;
//
// IDL:orb.yoko.apache.org/OCI/SendReceiveMode:1.0
//
/** Indicates the send/receive capabilities of an OCI component. */
public class SendReceiveMode implements org.omg.CORBA.portable.IDLEntity
{
private static SendReceiveMode [] values_ = new SendReceiveMode[3];
private int value_;
public final static int _SendOnly = 0;
public final static SendReceiveMode SendOnly = new SendReceiveMode(_SendOnly);
public final static int _ReceiveOnly = 1;
public final static SendReceiveMode ReceiveOnly = new SendReceiveMode(_ReceiveOnly);
public final static int _SendReceive = 2;
public final static SendReceiveMode SendReceive = new SendReceiveMode(_SendReceive);
protected
SendReceiveMode(int value)
{
values_[value] = this;
value_ = value;
}
public int
value()
{
return value_;
}
public static SendReceiveMode
from_int(int value)
{
if(value < values_.length)
return values_[value];
else
throw new org.omg.CORBA.BAD_PARAM("Value (" + value + ") out of range", 25, org.omg.CORBA.CompletionStatus.COMPLETED_NO);
}
private java.lang.Object
readResolve()
throws java.io.ObjectStreamException
{
return from_int(value());
}
}