Web Service: ContentBundleService
Port ContentBundleServiceInterfacePort Port typeSource code
- createContentBundlesDetailSource code
- getContentBundlesByStatementDetailSource code
- performContentBundleActionDetailSource code
- updateContentBundlesDetailSource code
Operations
- createContentBundlesDescription:Creates new {@link ContentBundle} objects.Operation type:Request-response. The endpoint receives a message, and sends a correlated message.Input:createContentBundlesRequest (wsdlsoap:header, use = literal, part = RequestHeader)Source codeparameters type createContentBundlesCreates new {@link ContentBundle} objects.
- contentBundles - optional, unbounded; type ContentBundleA {@code ContentBundle} is a grouping of individual {@link Content}. A {@code ContentBundle} is defined as including the {@code Content} that match certain filter rules, along with the option to explicitly include or exclude certain {@code Content} IDs.
- id - optional; type longID that uniquely identifies the {@code ContentBundle}. This attribute is read-only and is assigned by Google when a content bundle is created.
- name - optional; type stringThe name of the {@code ContentBundle}. This attribute is required and has a maximum length of 255 characters.
- status - optional; type ContentBundleStatus - type string with restriction - enum { 'ACTIVE', 'INACTIVE', 'ARCHIVED', 'UNKNOWN' }The {@link ContentBundleStatus} of the {@code ContentBundle}. This attribute is read-only and defaults to {@link ContentBundleStatus#INACTIVE}.
- lastModifiedDateTime - optional; type DateTimeThe date and time at which this content bundle was last modified. New content that matches this bundle will not update this field. This attribute is read-only.Represents a date combined with the time of day.
- date - optional; type DateRepresents a date.
- year - optional; type intYear (e.g., 2009)
- month - optional; type intMonth (1..12)
- day - optional; type intDay (1..31)
- year - optional; type int
- hour - optional; type int
- minute - optional; type int
- second - optional; type int
- timeZoneId - optional; type string
- date - optional; type Date
- id - optional; type long
Output:createContentBundlesResponse (wsdlsoap:header, use = literal, part = ResponseHeader)Source codeparameters type createContentBundlesResponse- rval - optional, unbounded; type ContentBundleA {@code ContentBundle} is a grouping of individual {@link Content}. A {@code ContentBundle} is defined as including the {@code Content} that match certain filter rules, along with the option to explicitly include or exclude certain {@code Content} IDs.
- id - optional; type longID that uniquely identifies the {@code ContentBundle}. This attribute is read-only and is assigned by Google when a content bundle is created.
- name - optional; type stringThe name of the {@code ContentBundle}. This attribute is required and has a maximum length of 255 characters.
- status - optional; type ContentBundleStatus - type string with restriction - enum { 'ACTIVE', 'INACTIVE', 'ARCHIVED', 'UNKNOWN' }The {@link ContentBundleStatus} of the {@code ContentBundle}. This attribute is read-only and defaults to {@link ContentBundleStatus#INACTIVE}.
- lastModifiedDateTime - optional; type DateTimeThe date and time at which this content bundle was last modified. New content that matches this bundle will not update this field. This attribute is read-only.Represents a date combined with the time of day.
- date - optional; type DateRepresents a date.
- year - optional; type intYear (e.g., 2009)
- month - optional; type intMonth (1..12)
- day - optional; type intDay (1..31)
- year - optional; type int
- hour - optional; type int
- minute - optional; type int
- second - optional; type int
- timeZoneId - optional; type string
- date - optional; type Date
- id - optional; type long
Fault:ApiException (wsdlsoap:fault, use = literal)Source codeApiException type ApiExceptionFaultException class for holding a list of service errors.Base class for exceptions.- message - optional; type stringError message.
- errors - optional, unbounded; type ApiErrorThe API error base class that provides details about an error that occurred while processing a service request.
The OGNL field path is provided for parsers to identify the request data element that may have caused the error.
- fieldPath - optional; type stringThe OGNL field path to identify cause of error.
- fieldPathElements - optional, unbounded; type FieldPathElementA parsed copy of the field path. For example, the field path "operations[1].operand" corresponds to this list: {FieldPathElement(field = "operations", index = 1), FieldPathElement(field = "operand", index = null)}.A segment of a field path. Each dot in a field path defines a new segment.
- field - optional; type stringThe name of a field in lower camelcase. (e.g. "biddingStrategy")
- index - optional; type intFor list fields, this is a 0-indexed position in the list. Null for non-list fields.
- field - optional; type string
- trigger - optional; type stringThe data that caused the error.
- errorString - optional; type stringA simple string representation of the error and reason.
List of errors. - fieldPath - optional; type string
A fault element of type ApiException. - contentBundles - optional, unbounded; type ContentBundle
- getContentBundlesByStatementDescription:Gets a {@link ContentBundlePage} of {@link ContentBundle} objects that satisfy the given {@link Statement#query}. The following fields are supported for filtering:
PQL Property Object Property {@code id} {@link ContentBundle#id} {@code name} {@link ContentBundle#name} {@code status} {@link ContentBundle#status} Operation type:Request-response. The endpoint receives a message, and sends a correlated message.Input:getContentBundlesByStatementRequest (wsdlsoap:header, use = literal, part = RequestHeader)Source codeparameters type getContentBundlesByStatementGets a {@link ContentBundlePage} of {@link ContentBundle} objects that satisfy the given {@link Statement#query}. The following fields are supported for filtering:PQL Property Object Property {@code id} {@link ContentBundle#id} {@code name} {@link ContentBundle#name} {@code status} {@link ContentBundle#status} - filterStatement - optional; type StatementCaptures the {@code WHERE}, {@code ORDER BY} and {@code LIMIT} clauses of a PQL query. Statements are typically used to retrieve objects of a predefined domain type, which makes SELECT clause unnecessary.
An example query text might be {@code "WHERE status = 'ACTIVE' ORDER BY id LIMIT 30"}.
Statements support bind variables. These are substitutes for literals and can be thought of as input parameters to a PQL query.
An example of such a query might be {@code "WHERE id = :idValue"}.
Statements also support use of the LIKE keyword. This provides wildcard string matching.
An example of such a query might be {@code "WHERE name LIKE '%searchString%'"}.
The value for the variable idValue must then be set with an object of type {@link Value}, e.g., {@link NumberValue}, {@link TextValue} or {@link BooleanValue}.- query - optional; type stringHolds the query in PQL syntax. The syntax is:
[WHERE{[AND | OR] ...}]
[ORDER BY[ASC | DESC]]
[LIMIT {[,] } | { OFFSET }]
:={< | <= | > | >= | = | != }
:={< | <= | > | >= | = | != }
:= IN
:= IS NULL
:= LIKE
:= :
- values - optional, unbounded; type String_ValueMapEntryHolds keys and values for bind variables and their values. The key is the name of the bind variable. The value is the literal value of the variable.
In the example {@code "WHERE status = :bindStatus ORDER BY id LIMIT 30"}, the bind variable, represented by {@code :bindStatus} is named {@code bindStatus}, which would also be the parameter map key. The bind variable's value would be represented by a parameter map value of type {@link TextValue}. The final result, for example, would be an entry of {@code "bindStatus" => StringParam("ACTIVE")}.
This represents an entry in a map with a key of type String and value of type Value.- key - optional; type string
- value - optional; type Value{@code Value} represents a value.
- query - optional; type string
Output:getContentBundlesByStatementResponse (wsdlsoap:header, use = literal, part = ResponseHeader)Source codeparameters type getContentBundlesByStatementResponse- rval - optional; type ContentBundlePageCaptures a page of {@link ContentBundle} objects.
- totalResultSetSize - optional; type intThe size of the total result set to which this page belongs.
- startIndex - optional; type intThe absolute index in the total result set on which this page begins.
- results - optional, unbounded; type ContentBundleA {@code ContentBundle} is a grouping of individual {@link Content}. A {@code ContentBundle} is defined as including the {@code Content} that match certain filter rules, along with the option to explicitly include or exclude certain {@code Content} IDs.
- id - optional; type longID that uniquely identifies the {@code ContentBundle}. This attribute is read-only and is assigned by Google when a content bundle is created.
- name - optional; type stringThe name of the {@code ContentBundle}. This attribute is required and has a maximum length of 255 characters.
- status - optional; type ContentBundleStatus - type string with restriction - enum { 'ACTIVE', 'INACTIVE', 'ARCHIVED', 'UNKNOWN' }The {@link ContentBundleStatus} of the {@code ContentBundle}. This attribute is read-only and defaults to {@link ContentBundleStatus#INACTIVE}.
- lastModifiedDateTime - optional; type DateTimeThe date and time at which this content bundle was last modified. New content that matches this bundle will not update this field. This attribute is read-only.Represents a date combined with the time of day.
- date - optional; type DateRepresents a date.
- year - optional; type intYear (e.g., 2009)
- month - optional; type intMonth (1..12)
- day - optional; type intDay (1..31)
- year - optional; type int
- hour - optional; type int
- minute - optional; type int
- second - optional; type int
- timeZoneId - optional; type string
- date - optional; type Date
The collection of content bundles contained within this page. - id - optional; type long
- totalResultSetSize - optional; type int
Fault:ApiException (wsdlsoap:fault, use = literal)Source codeApiException type ApiExceptionFaultException class for holding a list of service errors.Base class for exceptions.- message - optional; type stringError message.
- errors - optional, unbounded; type ApiErrorThe API error base class that provides details about an error that occurred while processing a service request.
The OGNL field path is provided for parsers to identify the request data element that may have caused the error.
- fieldPath - optional; type stringThe OGNL field path to identify cause of error.
- fieldPathElements - optional, unbounded; type FieldPathElementA parsed copy of the field path. For example, the field path "operations[1].operand" corresponds to this list: {FieldPathElement(field = "operations", index = 1), FieldPathElement(field = "operand", index = null)}.A segment of a field path. Each dot in a field path defines a new segment.
- field - optional; type stringThe name of a field in lower camelcase. (e.g. "biddingStrategy")
- index - optional; type intFor list fields, this is a 0-indexed position in the list. Null for non-list fields.
- field - optional; type string
- trigger - optional; type stringThe data that caused the error.
- errorString - optional; type stringA simple string representation of the error and reason.
List of errors. - fieldPath - optional; type string
A fault element of type ApiException. - filterStatement - optional; type Statement
- performContentBundleActionDescription:Performs actions on {@link ContentBundle} objects that match the given {@link Statement#query}.Operation type:Request-response. The endpoint receives a message, and sends a correlated message.Input:performContentBundleActionRequest (wsdlsoap:header, use = literal, part = RequestHeader)Source codeparameters type performContentBundleActionPerforms actions on {@link ContentBundle} objects that match the given {@link Statement#query}.
- contentBundleAction - optional; type ContentBundleActionRepresents the actions that can be performed on {@link ContentBundle} objects.
- filterStatement - optional; type StatementCaptures the {@code WHERE}, {@code ORDER BY} and {@code LIMIT} clauses of a PQL query. Statements are typically used to retrieve objects of a predefined domain type, which makes SELECT clause unnecessary.
An example query text might be {@code "WHERE status = 'ACTIVE' ORDER BY id LIMIT 30"}.
Statements support bind variables. These are substitutes for literals and can be thought of as input parameters to a PQL query.
An example of such a query might be {@code "WHERE id = :idValue"}.
Statements also support use of the LIKE keyword. This provides wildcard string matching.
An example of such a query might be {@code "WHERE name LIKE '%searchString%'"}.
The value for the variable idValue must then be set with an object of type {@link Value}, e.g., {@link NumberValue}, {@link TextValue} or {@link BooleanValue}.- query - optional; type stringHolds the query in PQL syntax. The syntax is:
[WHERE{[AND | OR] ...}]
[ORDER BY[ASC | DESC]]
[LIMIT {[,] } | { OFFSET }]
:={< | <= | > | >= | = | != }
:={< | <= | > | >= | = | != }
:= IN
:= IS NULL
:= LIKE
:= :
- values - optional, unbounded; type String_ValueMapEntryHolds keys and values for bind variables and their values. The key is the name of the bind variable. The value is the literal value of the variable.
In the example {@code "WHERE status = :bindStatus ORDER BY id LIMIT 30"}, the bind variable, represented by {@code :bindStatus} is named {@code bindStatus}, which would also be the parameter map key. The bind variable's value would be represented by a parameter map value of type {@link TextValue}. The final result, for example, would be an entry of {@code "bindStatus" => StringParam("ACTIVE")}.
This represents an entry in a map with a key of type String and value of type Value.- key - optional; type string
- value - optional; type Value{@code Value} represents a value.
- query - optional; type string
Output:performContentBundleActionResponse (wsdlsoap:header, use = literal, part = ResponseHeader)Source codeparameters type performContentBundleActionResponse- rval - optional; type UpdateResultRepresents the result of performing an action on objects.
- numChanges - optional; type intThe number of objects that were changed as a result of performing the action.
- numChanges - optional; type int
Fault:ApiException (wsdlsoap:fault, use = literal)Source codeApiException type ApiExceptionFaultException class for holding a list of service errors.Base class for exceptions.- message - optional; type stringError message.
- errors - optional, unbounded; type ApiErrorThe API error base class that provides details about an error that occurred while processing a service request.
The OGNL field path is provided for parsers to identify the request data element that may have caused the error.
- fieldPath - optional; type stringThe OGNL field path to identify cause of error.
- fieldPathElements - optional, unbounded; type FieldPathElementA parsed copy of the field path. For example, the field path "operations[1].operand" corresponds to this list: {FieldPathElement(field = "operations", index = 1), FieldPathElement(field = "operand", index = null)}.A segment of a field path. Each dot in a field path defines a new segment.
- field - optional; type stringThe name of a field in lower camelcase. (e.g. "biddingStrategy")
- index - optional; type intFor list fields, this is a 0-indexed position in the list. Null for non-list fields.
- field - optional; type string
- trigger - optional; type stringThe data that caused the error.
- errorString - optional; type stringA simple string representation of the error and reason.
List of errors. - fieldPath - optional; type string
A fault element of type ApiException. - contentBundleAction - optional; type ContentBundleAction
- updateContentBundlesDescription:Updates the specified {@link ContentBundle} objects.Operation type:Request-response. The endpoint receives a message, and sends a correlated message.Input:updateContentBundlesRequest (wsdlsoap:header, use = literal, part = RequestHeader)Source codeparameters type updateContentBundlesUpdates the specified {@link ContentBundle} objects.
- contentBundles - optional, unbounded; type ContentBundleA {@code ContentBundle} is a grouping of individual {@link Content}. A {@code ContentBundle} is defined as including the {@code Content} that match certain filter rules, along with the option to explicitly include or exclude certain {@code Content} IDs.
- id - optional; type longID that uniquely identifies the {@code ContentBundle}. This attribute is read-only and is assigned by Google when a content bundle is created.
- name - optional; type stringThe name of the {@code ContentBundle}. This attribute is required and has a maximum length of 255 characters.
- status - optional; type ContentBundleStatus - type string with restriction - enum { 'ACTIVE', 'INACTIVE', 'ARCHIVED', 'UNKNOWN' }The {@link ContentBundleStatus} of the {@code ContentBundle}. This attribute is read-only and defaults to {@link ContentBundleStatus#INACTIVE}.
- lastModifiedDateTime - optional; type DateTimeThe date and time at which this content bundle was last modified. New content that matches this bundle will not update this field. This attribute is read-only.Represents a date combined with the time of day.
- date - optional; type DateRepresents a date.
- year - optional; type intYear (e.g., 2009)
- month - optional; type intMonth (1..12)
- day - optional; type intDay (1..31)
- year - optional; type int
- hour - optional; type int
- minute - optional; type int
- second - optional; type int
- timeZoneId - optional; type string
- date - optional; type Date
- id - optional; type long
Output:updateContentBundlesResponse (wsdlsoap:header, use = literal, part = ResponseHeader)Source codeparameters type updateContentBundlesResponse- rval - optional, unbounded; type ContentBundleA {@code ContentBundle} is a grouping of individual {@link Content}. A {@code ContentBundle} is defined as including the {@code Content} that match certain filter rules, along with the option to explicitly include or exclude certain {@code Content} IDs.
- id - optional; type longID that uniquely identifies the {@code ContentBundle}. This attribute is read-only and is assigned by Google when a content bundle is created.
- name - optional; type stringThe name of the {@code ContentBundle}. This attribute is required and has a maximum length of 255 characters.
- status - optional; type ContentBundleStatus - type string with restriction - enum { 'ACTIVE', 'INACTIVE', 'ARCHIVED', 'UNKNOWN' }The {@link ContentBundleStatus} of the {@code ContentBundle}. This attribute is read-only and defaults to {@link ContentBundleStatus#INACTIVE}.
- lastModifiedDateTime - optional; type DateTimeThe date and time at which this content bundle was last modified. New content that matches this bundle will not update this field. This attribute is read-only.Represents a date combined with the time of day.
- date - optional; type DateRepresents a date.
- year - optional; type intYear (e.g., 2009)
- month - optional; type intMonth (1..12)
- day - optional; type intDay (1..31)
- year - optional; type int
- hour - optional; type int
- minute - optional; type int
- second - optional; type int
- timeZoneId - optional; type string
- date - optional; type Date
- id - optional; type long
Fault:ApiException (wsdlsoap:fault, use = literal)Source codeApiException type ApiExceptionFaultException class for holding a list of service errors.Base class for exceptions.- message - optional; type stringError message.
- errors - optional, unbounded; type ApiErrorThe API error base class that provides details about an error that occurred while processing a service request.
The OGNL field path is provided for parsers to identify the request data element that may have caused the error.
- fieldPath - optional; type stringThe OGNL field path to identify cause of error.
- fieldPathElements - optional, unbounded; type FieldPathElementA parsed copy of the field path. For example, the field path "operations[1].operand" corresponds to this list: {FieldPathElement(field = "operations", index = 1), FieldPathElement(field = "operand", index = null)}.A segment of a field path. Each dot in a field path defines a new segment.
- field - optional; type stringThe name of a field in lower camelcase. (e.g. "biddingStrategy")
- index - optional; type intFor list fields, this is a 0-indexed position in the list. Null for non-list fields.
- field - optional; type string
- trigger - optional; type stringThe data that caused the error.
- errorString - optional; type stringA simple string representation of the error and reason.
List of errors. - fieldPath - optional; type string
A fault element of type ApiException. - contentBundles - optional, unbounded; type ContentBundle
Port type ContentBundleServiceInterfaceSource code
WSDL source code
About wsdl-viewer.xsl
Author: tomi vanek
Download athttp://tomi.vanek.sk/xml/wsdl-viewer.xsl.
The transformation was inspired by the article
Uche Ogbuji: WSDL processing with XSLT