net.authorize.api.contract.v1
Enum SettingNameEnum

java.lang.Object
  extended by java.lang.Enum<SettingNameEnum>
      extended by net.authorize.api.contract.v1.SettingNameEnum
All Implemented Interfaces:
Serializable, Comparable<SettingNameEnum>

public enum SettingNameEnum
extends Enum<SettingNameEnum>

Java class for settingNameEnum.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="settingNameEnum">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="emailCustomer"/>
     <enumeration value="merchantEmail"/>
     <enumeration value="allowPartialAuth"/>
     <enumeration value="headerEmailReceipt"/>
     <enumeration value="footerEmailReceipt"/>
     <enumeration value="recurringBilling"/>
     <enumeration value="duplicateWindow"/>
     <enumeration value="testRequest"/>
     <enumeration value="hostedProfileReturnUrl"/>
     <enumeration value="hostedProfileReturnUrlText"/>
     <enumeration value="hostedProfilePageBorderVisible"/>
     <enumeration value="hostedProfileIFrameCommunicatorUrl"/>
     <enumeration value="hostedProfileHeadingBgColor"/>
     <enumeration value="hostedProfileValidationMode"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ALLOW_PARTIAL_AUTH
          true/false.
DUPLICATE_WINDOW
          number.
EMAIL_CUSTOMER
          true/false.
FOOTER_EMAIL_RECEIPT
          string.
HEADER_EMAIL_RECEIPT
          string.
HOSTED_PROFILE_HEADING_BG_COLOR
          #e0e0e0.
HOSTED_PROFILE_I_FRAME_COMMUNICATOR_URL
          string.
HOSTED_PROFILE_PAGE_BORDER_VISIBLE
          true/false.
HOSTED_PROFILE_RETURN_URL
          string.
HOSTED_PROFILE_RETURN_URL_TEXT
          string.
HOSTED_PROFILE_VALIDATION_MODE
          liveMode/testMode liveMode: generates a transaction to the processor in the amount of 0.01 or 0.00.
MERCHANT_EMAIL
          string.
RECURRING_BILLING
          true/false.
TEST_REQUEST
          true/false.
 
Method Summary
static SettingNameEnum fromValue(String v)
           
 String value()
           
static SettingNameEnum valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SettingNameEnum[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EMAIL_CUSTOMER

public static final SettingNameEnum EMAIL_CUSTOMER
true/false. Used by createTransaction method.


MERCHANT_EMAIL

public static final SettingNameEnum MERCHANT_EMAIL
string. Used by createTransaction method.


ALLOW_PARTIAL_AUTH

public static final SettingNameEnum ALLOW_PARTIAL_AUTH
true/false. Used by createTransaction method.


HEADER_EMAIL_RECEIPT

public static final SettingNameEnum HEADER_EMAIL_RECEIPT
string. Used by createTransaction method.


FOOTER_EMAIL_RECEIPT

public static final SettingNameEnum FOOTER_EMAIL_RECEIPT
string. Used by createTransaction method.


RECURRING_BILLING

public static final SettingNameEnum RECURRING_BILLING
true/false. Used by createTransaction method.


DUPLICATE_WINDOW

public static final SettingNameEnum DUPLICATE_WINDOW
number. Used by createTransaction method.


TEST_REQUEST

public static final SettingNameEnum TEST_REQUEST
true/false. Used by createTransaction method.


HOSTED_PROFILE_RETURN_URL

public static final SettingNameEnum HOSTED_PROFILE_RETURN_URL
string. Used by getHostedProfilePage method.


HOSTED_PROFILE_RETURN_URL_TEXT

public static final SettingNameEnum HOSTED_PROFILE_RETURN_URL_TEXT
string. Used by getHostedProfilePage method.


HOSTED_PROFILE_PAGE_BORDER_VISIBLE

public static final SettingNameEnum HOSTED_PROFILE_PAGE_BORDER_VISIBLE
true/false. Used by getHostedProfilePage method.


HOSTED_PROFILE_I_FRAME_COMMUNICATOR_URL

public static final SettingNameEnum HOSTED_PROFILE_I_FRAME_COMMUNICATOR_URL
string. Used by getHostedProfilePage method.


HOSTED_PROFILE_HEADING_BG_COLOR

public static final SettingNameEnum HOSTED_PROFILE_HEADING_BG_COLOR
#e0e0e0. Used by getHostedProfilePage method.


HOSTED_PROFILE_VALIDATION_MODE

public static final SettingNameEnum HOSTED_PROFILE_VALIDATION_MODE
liveMode/testMode liveMode: generates a transaction to the processor in the amount of 0.01 or 0.00. is immediately voided, if successful. testMode: performs field validation only, all fields are validated except unrestricted field definitions (viz. telephone number) do not generate errors. If a validation transaction is unsuccessful, the profile is not created, and the merchant receives an error.

Method Detail

values

public static SettingNameEnum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SettingNameEnum c : SettingNameEnum.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SettingNameEnum valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static SettingNameEnum fromValue(String v)


Copyright © 2014. All Rights Reserved.