com.google.checkout.checkout
Class UrlParameter

java.lang.Object
  extended by com.google.checkout.checkout.UrlParameter

public class UrlParameter
extends java.lang.Object

This class represents a parameter on a URL as used by the CheckoutShoppingCartRequest clas s for 3rd party conversion tracking purposes.

Author:
simonjsmith@google.com See http://code.google.com/apis/checkout/developer/checkout_pixel_tracking.html For additional information on third party tracking
See Also:
CheckoutShoppingCartRequest

Constructor Summary
UrlParameter(java.lang.String name, UrlParameterType type)
          Constructor which takes the parameter name and type.
 
Method Summary
 java.lang.String getName()
          Get the URL parameter name.
 UrlParameterType getParamType()
          Get the URL parameter type.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

UrlParameter

public UrlParameter(java.lang.String name,
                    UrlParameterType type)
Constructor which takes the parameter name and type.

Parameters:
name - The parameter name.
type - The parameter type.
See Also:
UrlParameterType
Method Detail

getName

public java.lang.String getName()
Get the URL parameter name.

Returns:
The URL parameter name.

getParamType

public UrlParameterType getParamType()
Get the URL parameter type.

Returns:
The URL parameter type.
See Also:
UrlParameterType