public class Destination extends ExtensionPoint
| Modifier and Type | Class and Description |
|---|---|
static class |
Destination.MatchType
The match type for the path expression.
|
ExtensionPoint.CumulativeBlobHandler, ExtensionPoint.ExtensionHandlerAbstractExtension.AttributesHandlerxmlBloblocalName, namespace| Constructor and Description |
|---|
Destination()
Default mutable constructor.
|
Destination(java.lang.Boolean caseSensitive,
java.lang.String expression,
java.lang.String matchType,
java.lang.Boolean step1Required)
Immutable constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addStep(Step step)
Adds a new step.
|
protected void |
consumeAttributes(AttributeHelper helper)
Consumes attributes from the attribute helper.
|
void |
declareExtensions(ExtensionProfile extProfile)
Declares the set of expected Extension types for an ExtensionPoint within
the target extension profile.
|
java.lang.Boolean |
getCaseSensitive()
Returns the whether path URL matching is case sensitive.
|
static ExtensionDescription |
getDefaultDescription(boolean required,
boolean repeatable)
Returns the extension description, specifying whether it is required, and
whether it is repeatable.
|
java.lang.String |
getExpression()
Returns the goal's path expression.
|
java.lang.String |
getMatchType()
Returns the the match type for the path expression.
|
java.lang.Boolean |
getStep1Required()
Returns the whether step 1 is required for this goal.
|
java.util.List<Step> |
getSteps()
Returns the steps.
|
boolean |
hasCaseSensitive()
Returns whether it has the whether path URL matching is case sensitive.
|
boolean |
hasExpression()
Returns whether it has the goal's path expression.
|
boolean |
hasMatchType()
Returns whether it has the the match type for the path expression.
|
boolean |
hasStep1Required()
Returns whether it has the whether step 1 is required for this goal.
|
boolean |
hasSteps()
Returns whether it has the steps.
|
protected void |
putAttributes(AttributeGenerator generator)
Puts attributes into the attribute generator.
|
void |
setCaseSensitive(java.lang.Boolean caseSensitive)
Sets the whether path URL matching is case sensitive.
|
void |
setExpression(java.lang.String expression)
Sets the goal's path expression.
|
void |
setMatchType(java.lang.String matchType)
Sets the the match type for the path expression.
|
void |
setStep1Required(java.lang.Boolean step1Required)
Sets the whether step 1 is required for this goal.
|
java.lang.String |
toString() |
protected void |
validate()
Checks the attributes to see if there are any problems.
|
addExtension, addExtension, addRepeatingExtension, addRepeatingExtension, checkRequiredExtensions, createExtensionInstance, generate, generateCumulativeXmlBlob, generateExtensions, generateStartElement, getExtension, getExtensionDescription, getExtensionHandler, getExtensions, getHandler, getManifest, getRepeatingExtension, getRepeatingExtensions, getXmlBlob, hasExtension, hasRepeatingExtension, initializeArbitraryXml, parseCumulativeXmlBlob, removeExtension, removeExtension, removeRepeatingExtension, setExtension, setXmlBlob, visit, visitChild, visitChildrendisableStrictValidation, enableStrictValidation, eq, generate, generateAttributes, getExtensionLocalName, getExtensionNamespace, isImmutable, isStrictValidation, sameClassAs, setImmutable, throwExceptionForMissingAttribute, throwExceptionIfImmutablepublic Destination()
public Destination(java.lang.Boolean caseSensitive,
java.lang.String expression,
java.lang.String matchType,
java.lang.Boolean step1Required)
caseSensitive - whether path URL matching is case sensitive.expression - goal's path expression.matchType - the match type for the path expression.step1Required - whether step 1 is required for this goal.public void declareExtensions(ExtensionProfile extProfile)
ExtensionPointdeclareExtensions in class ExtensionPointextProfile - the ExtensionProfile to initialize.public java.lang.Boolean getCaseSensitive()
public void setCaseSensitive(java.lang.Boolean caseSensitive)
caseSensitive - whether path URL matching is case sensitive or
null to resetpublic boolean hasCaseSensitive()
public java.lang.String getExpression()
public void setExpression(java.lang.String expression)
expression - goal's path expression or null to resetpublic boolean hasExpression()
public java.lang.String getMatchType()
public void setMatchType(java.lang.String matchType)
matchType - the match type for the path expression or
null to resetpublic boolean hasMatchType()
public java.lang.Boolean getStep1Required()
public void setStep1Required(java.lang.Boolean step1Required)
step1Required - whether step 1 is required for this goal or
null to resetpublic boolean hasStep1Required()
public java.util.List<Step> getSteps()
public void addStep(Step step)
step - steppublic boolean hasSteps()
protected void validate()
AbstractExtensionvalidate in class AbstractExtensionpublic static ExtensionDescription getDefaultDescription(boolean required, boolean repeatable)
required - whether it is requiredrepeatable - whether it is repeatableprotected void putAttributes(AttributeGenerator generator)
AbstractExtensionAbstractExtension.generate(XmlWriter,ExtensionProfile). Default implementation
does nothing, though generally this is discouraged unless there really are
no attributes.putAttributes in class AbstractExtensiongenerator - attribute generatorprotected void consumeAttributes(AttributeHelper helper) throws ParseException
AbstractExtensionAttributeHelper.consumeContent(boolean) to consume the element's text
content. Called from AbstractExtension.getHandler(com.google.gdata.data.ExtensionProfile, java.lang.String, java.lang.String, org.xml.sax.Attributes). Default implementation does
nothing, though generally this is discouraged unless there really are no
attributes.consumeAttributes in class AbstractExtensionhelper - attribute helperParseException - any parsing exceptionpublic java.lang.String toString()
toString in class java.lang.Object