com.google.gdata.data.analytics
Class Goal

java.lang.Object
  extended by com.google.gdata.data.AbstractExtension
      extended by com.google.gdata.data.ExtensionPoint
          extended by com.google.gdata.data.analytics.Goal
All Implemented Interfaces:
Extension

public class Goal
extends ExtensionPoint

Google Analytics goal.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.gdata.data.ExtensionPoint
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandler
 
Constructor Summary
Goal()
          Default mutable constructor.
Goal(java.lang.Boolean active, java.lang.String name, java.lang.Integer number, java.lang.Double value)
          Immutable constructor.
 
Method Summary
 void declareExtensions(ExtensionProfile extProfile)
          Declares the set of expected Extension types for an ExtensionPoint within the target extension profile.
 java.lang.Boolean getActive()
          Returns the whether the goal is currently active.
static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
          Returns the extension description, specifying whether it is required, and whether it is repeatable.
 Destination getDestination()
          Returns the destination.
 Engagement getEngagement()
          Returns the engagement.
 java.lang.String getName()
          Returns the goal's name.
 java.lang.Integer getNumber()
          Returns the goal's number.
 java.lang.Double getValue()
          Returns the goal's monetary value.
 boolean hasActive()
          Returns whether it has the whether the goal is currently active.
 boolean hasDestination()
          Returns whether it has the destination.
 boolean hasEngagement()
          Returns whether it has the engagement.
 boolean hasName()
          Returns whether it has the goal's name.
 boolean hasNumber()
          Returns whether it has the goal's number.
 boolean hasValue()
          Returns whether it has the goal's monetary value.
 void setActive(java.lang.Boolean active)
          Sets the whether the goal is currently active.
 void setDestination(Destination destination)
          Sets the destination.
 void setEngagement(Engagement engagement)
          Sets the engagement.
 void setName(java.lang.String name)
          Sets the goal's name.
 void setNumber(java.lang.Integer number)
          Sets the goal's number.
 void setValue(java.lang.Double value)
          Sets the goal's monetary value.
 java.lang.String toString()
           
 
Methods inherited from class com.google.gdata.data.ExtensionPoint
addExtension, addRepeatingExtension, generateCumulativeXmlBlob, getExtension, getExtensions, getHandler, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit
 
Methods inherited from class com.google.gdata.data.AbstractExtension
disableStrictValidation, enableStrictValidation, generate, getExtensionLocalName, getExtensionNamespace, isImmutable, isStrictValidation, setImmutable
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Goal

public Goal()
Default mutable constructor.


Goal

public Goal(java.lang.Boolean active,
            java.lang.String name,
            java.lang.Integer number,
            java.lang.Double value)
Immutable constructor.

Parameters:
active - whether the goal is currently active.
name - goal's name.
number - goal's number.
value - goal's monetary value.
Method Detail

declareExtensions

public void declareExtensions(ExtensionProfile extProfile)
Description copied from class: ExtensionPoint
Declares the set of expected Extension types for an ExtensionPoint within the target extension profile. The base implementation does not declare any extensions, but can be overridden by specific types of ExtensionPoints that always contain a well-defined set of extensions.

Overrides:
declareExtensions in class ExtensionPoint
Parameters:
extProfile - the ExtensionProfile to initialize.

getActive

public java.lang.Boolean getActive()
Returns the whether the goal is currently active.

Returns:
whether the goal is currently active

setActive

public void setActive(java.lang.Boolean active)
Sets the whether the goal is currently active.

Parameters:
active - whether the goal is currently active or null to reset

hasActive

public boolean hasActive()
Returns whether it has the whether the goal is currently active.

Returns:
whether it has the whether the goal is currently active

getDestination

public Destination getDestination()
Returns the destination.

Returns:
destination

setDestination

public void setDestination(Destination destination)
Sets the destination.

Parameters:
destination - destination or null to reset

hasDestination

public boolean hasDestination()
Returns whether it has the destination.

Returns:
whether it has the destination

getEngagement

public Engagement getEngagement()
Returns the engagement.

Returns:
engagement

setEngagement

public void setEngagement(Engagement engagement)
Sets the engagement.

Parameters:
engagement - engagement or null to reset

hasEngagement

public boolean hasEngagement()
Returns whether it has the engagement.

Returns:
whether it has the engagement

getName

public java.lang.String getName()
Returns the goal's name.

Returns:
goal's name

setName

public void setName(java.lang.String name)
Sets the goal's name.

Parameters:
name - goal's name or null to reset

hasName

public boolean hasName()
Returns whether it has the goal's name.

Returns:
whether it has the goal's name

getNumber

public java.lang.Integer getNumber()
Returns the goal's number.

Returns:
goal's number

setNumber

public void setNumber(java.lang.Integer number)
Sets the goal's number.

Parameters:
number - goal's number or null to reset

hasNumber

public boolean hasNumber()
Returns whether it has the goal's number.

Returns:
whether it has the goal's number

getValue

public java.lang.Double getValue()
Returns the goal's monetary value.

Returns:
goal's monetary value

setValue

public void setValue(java.lang.Double value)
Sets the goal's monetary value.

Parameters:
value - goal's monetary value or null to reset

hasValue

public boolean hasValue()
Returns whether it has the goal's monetary value.

Returns:
whether it has the goal's monetary value

getDefaultDescription

public static ExtensionDescription getDefaultDescription(boolean required,
                                                         boolean repeatable)
Returns the extension description, specifying whether it is required, and whether it is repeatable.

Parameters:
required - whether it is required
repeatable - whether it is repeatable
Returns:
extension description

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object