Package org.xrace.desjardins.reponse

Examples of org.xrace.desjardins.reponse.TransactionUrlParameters


    {
      @Override
      public java.lang.Object getValue(java.lang.Object object)
          throws IllegalStateException
      {
        TransactionUrlParameters target = (TransactionUrlParameters) object;
        return target.getTransactionUrlParameter();
      }

      @Override
      public void setValue(java.lang.Object object, java.lang.Object value)
          throws IllegalStateException, IllegalArgumentException
      {
        try
        {
          TransactionUrlParameters target = (TransactionUrlParameters) object;
          target
              .addTransactionUrlParameter((org.xrace.desjardins.reponse.TransactionUrlParameter) value);
        }
        catch (java.lang.Exception ex)
        {
          throw new IllegalStateException(ex.toString());
        }
      }

      @Override
      public void resetValue(Object object) throws IllegalStateException,
          IllegalArgumentException
      {
        try
        {
          TransactionUrlParameters target = (TransactionUrlParameters) object;
          target.removeAllTransactionUrlParameter();
        }
        catch (java.lang.Exception ex)
        {
          throw new IllegalStateException(ex.toString());
        }
View Full Code Here

TOP

Related Classes of org.xrace.desjardins.reponse.TransactionUrlParameters

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.