javax.xml.ws.ResponseWrapper Java Examples
The following examples show how to use
javax.xml.ws.ResponseWrapper.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Device.java From onvif with Apache License 2.0 | 5 votes |
/** * This operation controls whether the hostname is set manually or retrieved * via DHCP. * */ @WebMethod(operationName = "SetHostnameFromDHCP", action = "http://www.onvif.org/ver10/device/wsdl/SetHostnameFromDHCP") @RequestWrapper(localName = "SetHostnameFromDHCP", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.SetHostnameFromDHCP") @ResponseWrapper(localName = "SetHostnameFromDHCPResponse", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.SetHostnameFromDHCPResponse") @WebResult(name = "RebootNeeded", targetNamespace = "http://www.onvif.org/ver10/device/wsdl") public boolean setHostnameFromDHCP( @WebParam(name = "FromDHCP", targetNamespace = "http://www.onvif.org/ver10/device/wsdl") boolean fromDHCP );
Example #2
Source File: RecordingPort.java From onvif with Apache License 2.0 | 5 votes |
/** * CreateRecordingJob shall create a new recording job. * * The JobConfiguration returned from CreateRecordingJob shall be identical to the * JobConfiguration passed into CreateRecordingJob, except for the ReceiverToken and the * AutoCreateReceiver. In the returned structure, the ReceiverToken shall be present and valid * and the AutoCreateReceiver field shall be omitted. * */ @WebMethod(operationName = "CreateRecordingJob", action = "http://www.onvif.org/ver10/recording/wsdl/CreateRecordingJob") @RequestWrapper(localName = "CreateRecordingJob", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl", className = "org.onvif.ver10.recording.wsdl.CreateRecordingJob") @ResponseWrapper(localName = "CreateRecordingJobResponse", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl", className = "org.onvif.ver10.recording.wsdl.CreateRecordingJobResponse") public void createRecordingJob( @WebParam(mode = WebParam.Mode.INOUT, name = "JobConfiguration", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl") javax.xml.ws.Holder<org.onvif.ver10.schema.RecordingJobConfiguration> jobConfiguration, @WebParam(mode = WebParam.Mode.OUT, name = "JobToken", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl") javax.xml.ws.Holder<java.lang.String> jobToken );
Example #3
Source File: Device.java From onvif with Apache License 2.0 | 5 votes |
/** * This operation gets the NTP settings from a device. If the device supports * NTP, it shall be * possible to get the NTP server settings through the GetNTP command. * */ @WebMethod(operationName = "GetNTP", action = "http://www.onvif.org/ver10/device/wsdl/GetNTP") @RequestWrapper(localName = "GetNTP", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.GetNTP") @ResponseWrapper(localName = "GetNTPResponse", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.GetNTPResponse") @WebResult(name = "NTPInformation", targetNamespace = "http://www.onvif.org/ver10/device/wsdl") public org.onvif.ver10.schema.NTPInformation getNTP() ;
Example #4
Source File: Media.java From onvif with Apache License 2.0 | 5 votes |
/** * If the audio decoder configuration token is already known, the decoder * configuration can be fetched through the GetAudioDecoderConfiguration command. * */ @WebMethod(operationName = "GetAudioDecoderConfiguration", action = "http://www.onvif.org/ver10/media/wsdl/GetAudioDecoderConfiguration") @RequestWrapper(localName = "GetAudioDecoderConfiguration", targetNamespace = "http://www.onvif.org/ver10/media/wsdl", className = "org.onvif.ver10.media.wsdl.GetAudioDecoderConfiguration") @ResponseWrapper(localName = "GetAudioDecoderConfigurationResponse", targetNamespace = "http://www.onvif.org/ver10/media/wsdl", className = "org.onvif.ver10.media.wsdl.GetAudioDecoderConfigurationResponse") @WebResult(name = "Configuration", targetNamespace = "http://www.onvif.org/ver10/media/wsdl") public org.onvif.ver10.schema.AudioDecoderConfiguration getAudioDecoderConfiguration( @WebParam(name = "ConfigurationToken", targetNamespace = "http://www.onvif.org/ver10/media/wsdl") java.lang.String configurationToken );
Example #5
Source File: RecordingPort.java From onvif with Apache License 2.0 | 5 votes |
/** * GetRecordingJobConfiguration shall return the current configuration for a * recording job. * */ @WebMethod(operationName = "GetRecordingJobConfiguration", action = "http://www.onvif.org/ver10/recording/wsdl/GetRecordingJobConfiguration") @RequestWrapper(localName = "GetRecordingJobConfiguration", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl", className = "org.onvif.ver10.recording.wsdl.GetRecordingJobConfiguration") @ResponseWrapper(localName = "GetRecordingJobConfigurationResponse", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl", className = "org.onvif.ver10.recording.wsdl.GetRecordingJobConfigurationResponse") @WebResult(name = "JobConfiguration", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl") public org.onvif.ver10.schema.RecordingJobConfiguration getRecordingJobConfiguration( @WebParam(name = "JobToken", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl") java.lang.String jobToken );
Example #6
Source File: ReceiverPort.java From onvif with Apache License 2.0 | 5 votes |
/** * Lists all receivers currently present on a device. This operation is mandatory. * */ @WebMethod(operationName = "GetReceivers", action = "http://www.onvif.org/ver10/receiver/wsdl/GetReceivers") @RequestWrapper(localName = "GetReceivers", targetNamespace = "http://www.onvif.org/ver10/receiver/wsdl", className = "org.onvif.ver10.receiver.wsdl.GetReceivers") @ResponseWrapper(localName = "GetReceiversResponse", targetNamespace = "http://www.onvif.org/ver10/receiver/wsdl", className = "org.onvif.ver10.receiver.wsdl.GetReceiversResponse") @WebResult(name = "Receivers", targetNamespace = "http://www.onvif.org/ver10/receiver/wsdl") public java.util.List<org.onvif.ver10.schema.Receiver> getReceivers() ;
Example #7
Source File: Media.java From onvif with Apache License 2.0 | 5 votes |
/** * If the video source configuration token is already known, the video source * configuration can be fetched through the GetVideoSourceConfiguration command. * */ @WebMethod(operationName = "GetVideoSourceConfiguration", action = "http://www.onvif.org/ver10/media/wsdl/GetVideoSourceConfiguration") @RequestWrapper(localName = "GetVideoSourceConfiguration", targetNamespace = "http://www.onvif.org/ver10/media/wsdl", className = "org.onvif.ver10.media.wsdl.GetVideoSourceConfiguration") @ResponseWrapper(localName = "GetVideoSourceConfigurationResponse", targetNamespace = "http://www.onvif.org/ver10/media/wsdl", className = "org.onvif.ver10.media.wsdl.GetVideoSourceConfigurationResponse") @WebResult(name = "Configuration", targetNamespace = "http://www.onvif.org/ver10/media/wsdl") public org.onvif.ver10.schema.VideoSourceConfiguration getVideoSourceConfiguration( @WebParam(name = "ConfigurationToken", targetNamespace = "http://www.onvif.org/ver10/media/wsdl") java.lang.String configurationToken );
Example #8
Source File: Device.java From onvif with Apache License 2.0 | 5 votes |
/** * This operation gets a system log from the device. The exact format of the * system logs is outside the scope of this standard. * */ @WebMethod(operationName = "GetSystemLog", action = "http://www.onvif.org/ver10/device/wsdl/GetSystemLog") @RequestWrapper(localName = "GetSystemLog", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.GetSystemLog") @ResponseWrapper(localName = "GetSystemLogResponse", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.GetSystemLogResponse") @WebResult(name = "SystemLog", targetNamespace = "http://www.onvif.org/ver10/device/wsdl") public org.onvif.ver10.schema.SystemLog getSystemLog( @WebParam(name = "LogType", targetNamespace = "http://www.onvif.org/ver10/device/wsdl") org.onvif.ver10.schema.SystemLogType logType );
Example #9
Source File: SearchPort.java From onvif with Apache License 2.0 | 5 votes |
/** * Returns information about a single Recording specified by a * RecordingToken. This operation * is mandatory to support for a device implementing the recording search service. * */ @WebMethod(operationName = "GetRecordingInformation", action = "http://www.onvif.org/ver10/search/wsdl/GetRecordingInformation") @RequestWrapper(localName = "GetRecordingInformation", targetNamespace = "http://www.onvif.org/ver10/search/wsdl", className = "org.onvif.ver10.search.wsdl.GetRecordingInformation") @ResponseWrapper(localName = "GetRecordingInformationResponse", targetNamespace = "http://www.onvif.org/ver10/search/wsdl", className = "org.onvif.ver10.search.wsdl.GetRecordingInformationResponse") @WebResult(name = "RecordingInformation", targetNamespace = "http://www.onvif.org/ver10/search/wsdl") public org.onvif.ver10.schema.RecordingInformation getRecordingInformation( @WebParam(name = "RecordingToken", targetNamespace = "http://www.onvif.org/ver10/search/wsdl") java.lang.String recordingToken );
Example #10
Source File: ExecutorServices.java From freehealth-connector with GNU Affero General Public License v3.0 | 5 votes |
@RequestWrapper( localName = "uploadFile", targetNamespace = "http://services.recipe.be", className = "be.recipe.services.UploadFile" ) @WebMethod @ResponseWrapper( localName = "uploadFileResponse", targetNamespace = "http://services.recipe.be", className = "be.recipe.services.UploadFileResponse" ) void uploadFile(@WebParam(name = "UploadFileParam",targetNamespace = "") byte[] var1);
Example #11
Source File: JaxWsEchoService.java From rice with Educational Community License v2.0 | 5 votes |
@WebResult(name = "outMsg") @RequestWrapper(localName = "Echo") @ResponseWrapper(localName = "EchoResponse") @WebMethod public String doEcho( @WebParam(name = "inMsg") String inMsg );
Example #12
Source File: ISignDictionaryWS.java From poli-libras with GNU General Public License v3.0 | 5 votes |
/** * * @param arg0 * @return * returns java.util.List<br.usp.wikilibras.ws.Sign> */ @WebMethod @WebResult(targetNamespace = "") @RequestWrapper(localName = "translate", targetNamespace = "http://ws.wikilibras.usp.br/", className = "br.usp.wikilibras.ws.Translate") @ResponseWrapper(localName = "translateResponse", targetNamespace = "http://ws.wikilibras.usp.br/", className = "br.usp.wikilibras.ws.TranslateResponse") public List<Sign> translate( @WebParam(name = "arg0", targetNamespace = "") String arg0);
Example #13
Source File: Device.java From onvif with Apache License 2.0 | 5 votes |
/** * This operation adds an IP filter address to a device. If the device * supports device access * control based on IP filtering rules (denied or accepted ranges of IP addresses), the device * shall support adding of IP filtering addresses through the AddIPAddressFilter command. * */ @WebMethod(operationName = "AddIPAddressFilter", action = "http://www.onvif.org/ver10/device/wsdl/AddIPAddressFilter") @RequestWrapper(localName = "AddIPAddressFilter", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.AddIPAddressFilter") @ResponseWrapper(localName = "AddIPAddressFilterResponse", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.AddIPAddressFilterResponse") public void addIPAddressFilter( @WebParam(name = "IPAddressFilter", targetNamespace = "http://www.onvif.org/ver10/device/wsdl") org.onvif.ver10.schema.IPAddressFilter ipAddressFilter );
Example #14
Source File: RecordingPort.java From onvif with Apache License 2.0 | 5 votes |
/** * This method shall create a new track within a recording. * * This method is optional. It shall be available if the Recording/DynamicTracks capability is * TRUE. * * A TrackToken in itself does not uniquely identify a specific track. Tracks within different * recordings may have the same TrackToken. * */ @WebMethod(operationName = "CreateTrack", action = "http://www.onvif.org/ver10/recording/wsdl/CreateTrack") @RequestWrapper(localName = "CreateTrack", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl", className = "org.onvif.ver10.recording.wsdl.CreateTrack") @ResponseWrapper(localName = "CreateTrackResponse", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl", className = "org.onvif.ver10.recording.wsdl.CreateTrackResponse") @WebResult(name = "TrackToken", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl") public java.lang.String createTrack( @WebParam(name = "RecordingToken", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl") java.lang.String recordingToken, @WebParam(name = "TrackConfiguration", targetNamespace = "http://www.onvif.org/ver10/recording/wsdl") org.onvif.ver10.schema.TrackConfiguration trackConfiguration );
Example #15
Source File: BatchJobOpsServiceInterface.java From googleads-java-lib with Apache License 2.0 | 5 votes |
/** * * @param operations * @return * returns java.util.List<com.google.api.ads.adwords.jaxws.v201809.cm.MutateResult> * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://adwords.google.com/api/adwords/cm/v201809") @RequestWrapper(localName = "mutate", targetNamespace = "https://adwords.google.com/api/adwords/cm/v201809", className = "com.google.api.ads.adwords.jaxws.v201809.cm.BatchJobOpsServiceInterfacemutate") @ResponseWrapper(localName = "mutateResponse", targetNamespace = "https://adwords.google.com/api/adwords/cm/v201809", className = "com.google.api.ads.adwords.jaxws.v201809.cm.BatchJobOpsServiceInterfacemutateResponse") public List<MutateResult> mutate( @WebParam(name = "operations", targetNamespace = "https://adwords.google.com/api/adwords/cm/v201809") List<Operation> operations) throws ApiException_Exception ;
Example #16
Source File: HandlingReportService.java From dddsample-core with MIT License | 5 votes |
/** * * @param arg0 * @throws HandlingReportErrors_Exception */ @WebMethod @RequestWrapper(localName = "submitReport", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReport") @ResponseWrapper(localName = "submitReportResponse", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReportResponse") public void submitReport( @WebParam(name = "arg0", targetNamespace = "") HandlingReport arg0) throws HandlingReportErrors_Exception ;
Example #17
Source File: CfdaNumberService.java From kfs with GNU Affero General Public License v3.0 | 5 votes |
@WebResult(name = "return", targetNamespace = "") @RequestWrapper(localName = "lookupCfda", targetNamespace = KcConstants.KC_NAMESPACE_URI, className = "kc.LookupCfda") @WebMethod @ResponseWrapper(localName = "lookupCfdaResponse", targetNamespace = KcConstants.KC_NAMESPACE_URI, className = "kc.LookupCfdaResponse") public java.util.List<CfdaDTO> lookupCfda( @WebParam(name = "searchCriteria", targetNamespace = "") java.util.List<HashMapElement> searchCriteria );
Example #18
Source File: MobileApplicationServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Updates the specified {@link MobileApplication mobile applications}. * * @param mobileApplications the mobile applications to be updated * @return the updated mobileApplications * * * @param mobileApplications * @return * returns java.util.List<com.google.api.ads.admanager.jaxws.v202005.MobileApplication> * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v202005") @RequestWrapper(localName = "updateMobileApplications", targetNamespace = "https://www.google.com/apis/ads/publisher/v202005", className = "com.google.api.ads.admanager.jaxws.v202005.MobileApplicationServiceInterfaceupdateMobileApplications") @ResponseWrapper(localName = "updateMobileApplicationsResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v202005", className = "com.google.api.ads.admanager.jaxws.v202005.MobileApplicationServiceInterfaceupdateMobileApplicationsResponse") public List<MobileApplication> updateMobileApplications( @WebParam(name = "mobileApplications", targetNamespace = "https://www.google.com/apis/ads/publisher/v202005") List<MobileApplication> mobileApplications) throws ApiException_Exception ;
Example #19
Source File: Keystore.java From onvif with Apache License 2.0 | 3 votes |
/** * This operation returns the IDs of all certification paths that are stored in the device’s * keystore. * * This operation may be used, e.g., if a client lost track of which certificates are present * on the device. * If no certification path is stored on the device, an empty list is returned. * */ @WebMethod(operationName = "GetAllCertificationPaths", action = "http://www.onvif.org/ver10/advancedsecurity/wsdl/GetAllCertificationPaths") @RequestWrapper(localName = "GetAllCertificationPaths", targetNamespace = "http://www.onvif.org/ver10/advancedsecurity/wsdl", className = "org.onvif.ver10.advancedsecurity.wsdl.GetAllCertificationPaths") @ResponseWrapper(localName = "GetAllCertificationPathsResponse", targetNamespace = "http://www.onvif.org/ver10/advancedsecurity/wsdl", className = "org.onvif.ver10.advancedsecurity.wsdl.GetAllCertificationPathsResponse") @WebResult(name = "CertificationPathID", targetNamespace = "http://www.onvif.org/ver10/advancedsecurity/wsdl") public java.util.List<java.lang.String> getAllCertificationPaths() ;
Example #20
Source File: UserServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Gets a {@link UserPage} of {@link User} objects that satisfy the given * {@link Statement#query}. The following fields are supported for filtering: * * <table> * <tr> * <th scope="col">PQL Property</th> <th scope="col">Object Property</th> * </tr> * <tr> * <td>{@code email}</td> * <td>{@link User#email}</td> * </tr> * <tr> * <td>{@code id}</td> * <td>{@link User#id}</td> * </tr> * <tr> * <td>{@code name}</td> * <td>{@link User#name}</td> * </tr> * <tr> * <td>{@code roleId}</td> * <td>{@link User#roleId} * </tr> * <tr> * <td>{@code rolename}</td> * <td>{@link User#roleName} * </tr> * <tr> * <td>{@code status}</td> * <td>{@code ACTIVE} if {@link User#isActive} is true; {@code INACTIVE} * otherwise</td> * </tr> * </table> * * @param filterStatement a Publisher Query Language statement used to filter * a set of users * @return the users that match the given filter * * * @param filterStatement * @return * returns com.google.api.ads.admanager.jaxws.v202002.UserPage * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002") @RequestWrapper(localName = "getUsersByStatement", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002", className = "com.google.api.ads.admanager.jaxws.v202002.UserServiceInterfacegetUsersByStatement") @ResponseWrapper(localName = "getUsersByStatementResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002", className = "com.google.api.ads.admanager.jaxws.v202002.UserServiceInterfacegetUsersByStatementResponse") public UserPage getUsersByStatement( @WebParam(name = "filterStatement", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002") Statement filterStatement) throws ApiException_Exception ;
Example #21
Source File: Device.java From onvif with Apache License 2.0 | 3 votes |
/** * Manage auxiliary commands supported by a device, such as controlling an * Infrared (IR) lamp, * a heater or a wiper or a thermometer that is connected to the device. * * The supported commands can be retrieved via the AuxiliaryCommands capability. * * Although the name of the auxiliary commands can be freely defined, commands starting with * the prefix tt: are * reserved to define frequently used commands and these reserved commands shall all share the * "tt:command|parameter" syntax. * * A device that indicates auxiliary service capability shall support this command. * */ @WebMethod(operationName = "SendAuxiliaryCommand", action = "http://www.onvif.org/ver10/device/wsdl/SendAuxiliaryCommand") @RequestWrapper(localName = "SendAuxiliaryCommand", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.SendAuxiliaryCommand") @ResponseWrapper(localName = "SendAuxiliaryCommandResponse", targetNamespace = "http://www.onvif.org/ver10/device/wsdl", className = "org.onvif.ver10.device.wsdl.SendAuxiliaryCommandResponse") @WebResult(name = "AuxiliaryCommandResponse", targetNamespace = "http://www.onvif.org/ver10/device/wsdl") public java.lang.String sendAuxiliaryCommand( @WebParam(name = "AuxiliaryCommand", targetNamespace = "http://www.onvif.org/ver10/device/wsdl") java.lang.String auxiliaryCommand );
Example #22
Source File: LiveStreamEventServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Performs actions on {@link LiveStreamEvent} objects that match the given * {@link Statement#query}. * * @param liveStreamEventAction the action to perform * @param filterStatement a Publisher Query Language statement used to filter * a set of live stream events * @return the result of the action performed * * * @param liveStreamEventAction * @param filterStatement * @return * returns com.google.api.ads.admanager.jaxws.v202002.UpdateResult * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002") @RequestWrapper(localName = "performLiveStreamEventAction", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002", className = "com.google.api.ads.admanager.jaxws.v202002.LiveStreamEventServiceInterfaceperformLiveStreamEventAction") @ResponseWrapper(localName = "performLiveStreamEventActionResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002", className = "com.google.api.ads.admanager.jaxws.v202002.LiveStreamEventServiceInterfaceperformLiveStreamEventActionResponse") public UpdateResult performLiveStreamEventAction( @WebParam(name = "liveStreamEventAction", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002") LiveStreamEventAction liveStreamEventAction, @WebParam(name = "filterStatement", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002") Statement filterStatement) throws ApiException_Exception ;
Example #23
Source File: LineItemCreativeAssociationServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Returns a list of URLs that reference the specified site URL with the specified creative from * the association served to it. For Creative Set previewing you may specify the master creative * Id. Each URL corresponds to one available native style for previewing the specified creative. * * @param lineItemId the ID of the line item, which must already exist * @param creativeId the ID of the creative, which must already exist and must be a native * creative * @param siteUrl the URL of the site that the creative should be previewed in * @return the URLs that references the specified site URL and can be used to preview the * specified creative with the available native styles * * * @param siteUrl * @param lineItemId * @param creativeId * @return * returns java.util.List<com.google.api.ads.admanager.jaxws.v201908.CreativeNativeStylePreview> * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908") @RequestWrapper(localName = "getPreviewUrlsForNativeStyles", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908", className = "com.google.api.ads.admanager.jaxws.v201908.LineItemCreativeAssociationServiceInterfacegetPreviewUrlsForNativeStyles") @ResponseWrapper(localName = "getPreviewUrlsForNativeStylesResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908", className = "com.google.api.ads.admanager.jaxws.v201908.LineItemCreativeAssociationServiceInterfacegetPreviewUrlsForNativeStylesResponse") public List<CreativeNativeStylePreview> getPreviewUrlsForNativeStyles( @WebParam(name = "lineItemId", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908") Long lineItemId, @WebParam(name = "creativeId", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908") Long creativeId, @WebParam(name = "siteUrl", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908") String siteUrl) throws ApiException_Exception ;
Example #24
Source File: ReportServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Initiates the execution of a {@link ReportQuery} on the server. * * <p>The following fields are required: * <ul> * <li>{@link ReportJob#reportQuery}</li> * </ul> * * @param reportJob the report job to run * @return the report job with its ID filled in * * * @param reportJob * @return * returns com.google.api.ads.admanager.jaxws.v202002.ReportJob * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002") @RequestWrapper(localName = "runReportJob", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002", className = "com.google.api.ads.admanager.jaxws.v202002.ReportServiceInterfacerunReportJob") @ResponseWrapper(localName = "runReportJobResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002", className = "com.google.api.ads.admanager.jaxws.v202002.ReportServiceInterfacerunReportJobResponse") public ReportJob runReportJob( @WebParam(name = "reportJob", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002") ReportJob reportJob) throws ApiException_Exception ;
Example #25
Source File: CmsMetadataServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Returns a page of {@link CmsMetadataKey}s matching the specified {@link Statement}. The * following fields are supported for filtering: * * <table> * <tr> * <th scope = "col">PQL Property</th> <th scope="col">Object Property</th> * </tr> * <tr> * <td>{@code id}</td> * <td>{@link CmsMetadataKey#cmsMetadataKeyId}</td> * </tr> * <tr> * <td>{@code cmsKey}</td> * <td>{@link CmsMetadataKey#keyName}</td> * </tr> * <tr> * <td>{@code status}</td> * <td>{@link CmsMetadataKey#status}</td> * </tr> * </table> * * * @param statement * @return * returns com.google.api.ads.admanager.jaxws.v201908.CmsMetadataKeyPage * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908") @RequestWrapper(localName = "getCmsMetadataKeysByStatement", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908", className = "com.google.api.ads.admanager.jaxws.v201908.CmsMetadataServiceInterfacegetCmsMetadataKeysByStatement") @ResponseWrapper(localName = "getCmsMetadataKeysByStatementResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908", className = "com.google.api.ads.admanager.jaxws.v201908.CmsMetadataServiceInterfacegetCmsMetadataKeysByStatementResponse") public CmsMetadataKeyPage getCmsMetadataKeysByStatement( @WebParam(name = "statement", targetNamespace = "https://www.google.com/apis/ads/publisher/v201908") Statement statement) throws ApiException_Exception ;
Example #26
Source File: PlacementServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Updates the specified {@link Placement} objects. * * @param placements the placements to update * @return the updated placements * * * @param placements * @return * returns java.util.List<com.google.api.ads.admanager.jaxws.v202002.Placement> * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002") @RequestWrapper(localName = "updatePlacements", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002", className = "com.google.api.ads.admanager.jaxws.v202002.PlacementServiceInterfaceupdatePlacements") @ResponseWrapper(localName = "updatePlacementsResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002", className = "com.google.api.ads.admanager.jaxws.v202002.PlacementServiceInterfaceupdatePlacementsResponse") public List<Placement> updatePlacements( @WebParam(name = "placements", targetNamespace = "https://www.google.com/apis/ads/publisher/v202002") List<Placement> placements) throws ApiException_Exception ;
Example #27
Source File: AdjustmentServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Creates new {@link TrafficForecastSegment} objects. * * <p>This method requires that use of traffic forecast segments and forecast adjustments is * enabled for this network, and will throw an exception if it is not enabled. * * @param trafficForecastSegments the traffic forecast segments to create * @return the created traffic forecast segments with their IDs filled in * @throws ApiException if there is an error creating the traffic forecast segments * * * @param trafficForecastSegments * @return * returns java.util.List<com.google.api.ads.admanager.jaxws.v202005.TrafficForecastSegment> * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v202005") @RequestWrapper(localName = "createTrafficForecastSegments", targetNamespace = "https://www.google.com/apis/ads/publisher/v202005", className = "com.google.api.ads.admanager.jaxws.v202005.AdjustmentServiceInterfacecreateTrafficForecastSegments") @ResponseWrapper(localName = "createTrafficForecastSegmentsResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v202005", className = "com.google.api.ads.admanager.jaxws.v202005.AdjustmentServiceInterfacecreateTrafficForecastSegmentsResponse") public List<TrafficForecastSegment> createTrafficForecastSegments( @WebParam(name = "trafficForecastSegments", targetNamespace = "https://www.google.com/apis/ads/publisher/v202005") List<TrafficForecastSegment> trafficForecastSegments) throws ApiException_Exception ;
Example #28
Source File: CustomTargetingServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Updates the specified {@link CustomTargetingKey} objects. * * @param keys the custom targeting keys to update * @return the updated custom targeting keys * * * @param keys * @return * returns java.util.List<com.google.api.ads.admanager.jaxws.v201911.CustomTargetingKey> * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v201911") @RequestWrapper(localName = "updateCustomTargetingKeys", targetNamespace = "https://www.google.com/apis/ads/publisher/v201911", className = "com.google.api.ads.admanager.jaxws.v201911.CustomTargetingServiceInterfaceupdateCustomTargetingKeys") @ResponseWrapper(localName = "updateCustomTargetingKeysResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v201911", className = "com.google.api.ads.admanager.jaxws.v201911.CustomTargetingServiceInterfaceupdateCustomTargetingKeysResponse") public List<CustomTargetingKey> updateCustomTargetingKeys( @WebParam(name = "keys", targetNamespace = "https://www.google.com/apis/ads/publisher/v201911") List<CustomTargetingKey> keys) throws ApiException_Exception ;
Example #29
Source File: CreativeWrapperServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Updates the specified {@code CreativeWrapper} objects. * * @param creativeWrappers the creative wrappers to update * @return the updated creative wrapper objects * @throws ApiException * * * @param creativeWrappers * @return * returns java.util.List<com.google.api.ads.admanager.jaxws.v201911.CreativeWrapper> * @throws ApiException_Exception */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://www.google.com/apis/ads/publisher/v201911") @RequestWrapper(localName = "updateCreativeWrappers", targetNamespace = "https://www.google.com/apis/ads/publisher/v201911", className = "com.google.api.ads.admanager.jaxws.v201911.CreativeWrapperServiceInterfaceupdateCreativeWrappers") @ResponseWrapper(localName = "updateCreativeWrappersResponse", targetNamespace = "https://www.google.com/apis/ads/publisher/v201911", className = "com.google.api.ads.admanager.jaxws.v201911.CreativeWrapperServiceInterfaceupdateCreativeWrappersResponse") public List<CreativeWrapper> updateCreativeWrappers( @WebParam(name = "creativeWrappers", targetNamespace = "https://www.google.com/apis/ads/publisher/v201911") List<CreativeWrapper> creativeWrappers) throws ApiException_Exception ;
Example #30
Source File: CustomerServiceInterface.java From googleads-java-lib with Apache License 2.0 | 3 votes |
/** * * Returns details of all the customers directly accessible by the user authenticating the call. * <p> * Note: This method will return only test accounts if the developer token used has not been * approved. * <p> * Starting with v201607, if {@code clientCustomerId} is specified in the request header, * only details of that customer will be returned. To do this for prior versions, use the * {@code get()} method instead. * * * @return * returns java.util.List<com.google.api.ads.adwords.jaxws.v201809.mcm.Customer> * @throws ApiException */ @WebMethod @WebResult(name = "rval", targetNamespace = "https://adwords.google.com/api/adwords/mcm/v201809") @RequestWrapper(localName = "getCustomers", targetNamespace = "https://adwords.google.com/api/adwords/mcm/v201809", className = "com.google.api.ads.adwords.jaxws.v201809.mcm.CustomerServiceInterfacegetCustomers") @ResponseWrapper(localName = "getCustomersResponse", targetNamespace = "https://adwords.google.com/api/adwords/mcm/v201809", className = "com.google.api.ads.adwords.jaxws.v201809.mcm.CustomerServiceInterfacegetCustomersResponse") public List<Customer> getCustomers() throws ApiException ;