All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.omg.CosTransactions.Vote Maven / Gradle / Ivy

There is a newer version: 4.2.5
Show newest version
package org.omg.CosTransactions;


/**
* org/omg/CosTransactions/Vote.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from /home/jenkins/agent/workspace/orb-release-build/omgapi/src/main/idl/CosTransactions.idl
* Sunday, February 14, 2021 7:42:42 PM GMT
*/

public class Vote implements org.omg.CORBA.portable.IDLEntity
{
  private        int __value;
  private static int __size = 3;
  private static org.omg.CosTransactions.Vote[] __array = new org.omg.CosTransactions.Vote [__size];

  public static final int _VoteCommit = 0;
  public static final org.omg.CosTransactions.Vote VoteCommit = new org.omg.CosTransactions.Vote(_VoteCommit);
  public static final int _VoteRollback = 1;
  public static final org.omg.CosTransactions.Vote VoteRollback = new org.omg.CosTransactions.Vote(_VoteRollback);
  public static final int _VoteReadOnly = 2;
  public static final org.omg.CosTransactions.Vote VoteReadOnly = new org.omg.CosTransactions.Vote(_VoteReadOnly);

  public int value ()
  {
    return __value;
  }

  public static org.omg.CosTransactions.Vote from_int (int value)
  {
    if (value >= 0 && value < __size)
      return __array[value];
    else
      throw new org.omg.CORBA.BAD_PARAM ();
  }

  protected Vote (int value)
  {
    __value = value;
    __array[__value] = this;
  }
} // class Vote




© 2015 - 2024 Weber Informatics LLC | Privacy Policy