Examples of updatePlacements()


Examples of com.google.api.ads.dfp.axis.v201302.PlacementServiceInterface.updatePlacements()

    placement.setTargetingAdLocation("All images on sports pages.");
    placement.setTargetingSiteName("https://news.google.com");
    placement.setIsAdSenseTargetingEnabled(true);

    // Update the placement on the server.
    Placement[] placements = placementService.updatePlacements(new Placement[] {placement});

    for (Placement updatedPlacement : placements) {
      System.out.printf("Placement with ID \"%d\" and name \"%s\" was updated.\n",
          updatedPlacement.getId(), updatedPlacement.getName());
    }
View Full Code Here

Examples of com.google.api.ads.dfp.axis.v201306.PlacementServiceInterface.updatePlacements()

    placement.setTargetingAdLocation("All images on sports pages.");
    placement.setTargetingSiteName("https://news.google.com");
    placement.setIsAdSenseTargetingEnabled(true);

    // Update the placement on the server.
    Placement[] placements = placementService.updatePlacements(new Placement[] {placement});

    for (Placement updatedPlacement : placements) {
      System.out.printf("Placement with ID \"%d\" and name \"%s\" was updated.\n",
          updatedPlacement.getId(), updatedPlacement.getName());
    }
View Full Code Here

Examples of com.google.api.ads.dfp.axis.v201308.PlacementServiceInterface.updatePlacements()

    placement.setTargetingAdLocation("All images on sports pages.");
    placement.setTargetingSiteName("https://news.google.com");
    placement.setIsAdSenseTargetingEnabled(true);

    // Update the placement on the server.
    Placement[] placements = placementService.updatePlacements(new Placement[] {placement});

    for (Placement updatedPlacement : placements) {
      System.out.printf("Placement with ID \"%d\" and name \"%s\" was updated.\n",
          updatedPlacement.getId(), updatedPlacement.getName());
    }
View Full Code Here

Examples of com.google.api.ads.dfp.axis.v201311.PlacementServiceInterface.updatePlacements()

    placement.setTargetingAdLocation("All images on sports pages.");
    placement.setTargetingSiteName("https://news.google.com");
    placement.setIsAdSenseTargetingEnabled(true);

    // Update the placement on the server.
    Placement[] placements = placementService.updatePlacements(new Placement[] {placement});

    for (Placement updatedPlacement : placements) {
      System.out.printf("Placement with ID \"%d\" and name \"%s\" was updated.\n",
          updatedPlacement.getId(), updatedPlacement.getName());
    }
View Full Code Here

Examples of com.google.api.ads.dfp.v201208.PlacementServiceInterface.updatePlacements()

          placement.setTargetingSiteName("http://code.google.com");
          placement.setIsAdSenseTargetingEnabled(true);
        }

        // Update the placements on the server.
        placements = placementService.updatePlacements(placements);

        // Display results.
        if (placements != null) {
          for (Placement placement : placements) {
            System.out.println("A placement with ID \""
View Full Code Here

Examples of com.google.api.ads.dfp.v201211.PlacementServiceInterface.updatePlacements()

          placement.setTargetingSiteName("http://code.google.com");
          placement.setIsAdSenseTargetingEnabled(true);
        }

        // Update the placements on the server.
        placements = placementService.updatePlacements(placements);

        // Display results.
        if (placements != null) {
          for (Placement placement : placements) {
            System.out.println("A placement with ID \""
View Full Code Here

Examples of com.google.api.ads.dfp.v201302.PlacementServiceInterface.updatePlacements()

          placement.setTargetingSiteName("http://code.google.com");
          placement.setIsAdSenseTargetingEnabled(true);
        }

        // Update the placements on the server.
        placements = placementService.updatePlacements(placements);

        // Display results.
        if (placements != null) {
          for (Placement placement : placements) {
            System.out.println("A placement with ID \""
View Full Code Here

Examples of com.google.api.ads.dfp.v201306.PlacementServiceInterface.updatePlacements()

          placement.setTargetingSiteName("http://code.google.com");
          placement.setIsAdSenseTargetingEnabled(true);
        }

        // Update the placements on the server.
        placements = placementService.updatePlacements(placements);

        // Display results.
        if (placements != null) {
          for (Placement placement : placements) {
            System.out.println("A placement with ID \""
View Full Code Here

Examples of com.google.api.ads.dfp.v201308.PlacementServiceInterface.updatePlacements()

          placement.setTargetingSiteName("http://code.google.com");
          placement.setIsAdSenseTargetingEnabled(true);
        }

        // Update the placements on the server.
        placements = placementService.updatePlacements(placements);

        // Display results.
        if (placements != null) {
          for (Placement placement : placements) {
            System.out.println("A placement with ID \""
View Full Code Here

Examples of com.google.api.ads.dfp.v201311.PlacementServiceInterface.updatePlacements()

          placement.setTargetingSiteName("http://code.google.com");
          placement.setIsAdSenseTargetingEnabled(true);
        }

        // Update the placements on the server.
        placements = placementService.updatePlacements(placements);

        // Display results.
        if (placements != null) {
          for (Placement placement : placements) {
            System.out.println("A placement with ID \""
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.