// Copyright 2012 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package v201208.inventoryservice;
import com.google.api.ads.dfp.lib.DfpService;
import com.google.api.ads.dfp.lib.DfpServiceLogger;
import com.google.api.ads.dfp.lib.DfpUser;
import com.google.api.ads.dfp.v201208.AdUnit;
import com.google.api.ads.dfp.v201208.AdUnitSize;
import com.google.api.ads.dfp.v201208.AdUnitTargetWindow;
import com.google.api.ads.dfp.v201208.EnvironmentType;
import com.google.api.ads.dfp.v201208.InventoryServiceInterface;
import com.google.api.ads.dfp.v201208.NetworkServiceInterface;
import com.google.api.ads.dfp.v201208.Size;
import com.google.api.ads.dfp.v201208.TargetPlatform;
/**
* This example creates a new video ad unit under a the effective root ad unit.
* This feature is only available to DFP premium solution networks. To determine
* which ad units exist, run GetInventoryTreeExample.java or
* GetAllAdUnitsExample.java.
*
* Tags: InventoryService.createAdUnits, NetworkService.getCurrentNetwork
*
* @author api.arogal@gmail.com (Adam Rogal)
*/
public class CreateVideoAdUnitExample {
public static void main(String[] args) {
try {
// Log SOAP XML request and response.
DfpServiceLogger.log();
// Get DfpUser from "~/dfp.properties".
DfpUser user = new DfpUser();
// Get the InventoryService.
InventoryServiceInterface inventoryService =
user.getService(DfpService.V201208.INVENTORY_SERVICE);
// Get the NetworkService.
NetworkServiceInterface networkService = user.getService(DfpService.V201208.NETWORK_SERVICE);
// Set the parent ad unit's ID for all ad units to be created under.
String effectiveRootAdUnitId = networkService.getCurrentNetwork().getEffectiveRootAdUnitId();
// Create local ad unit object.
AdUnit adUnit = new AdUnit();
adUnit.setName("Video_Ad_Unit");
adUnit.setParentId(effectiveRootAdUnitId);
adUnit.setDescription("Ad unit description.");
adUnit.setTargetWindow(AdUnitTargetWindow.BLANK);
adUnit.setExplicitlyTargeted(true);
adUnit.setTargetPlatform(TargetPlatform.WEB);
// Create master ad unit size.
AdUnitSize masterAdUnitSize = new AdUnitSize();
masterAdUnitSize.setSize(new Size(400, 300, false));
masterAdUnitSize.setEnvironmentType(EnvironmentType.VIDEO_PLAYER);
// Create companion sizes.
AdUnitSize companionAdUnitSize1 = new AdUnitSize();
companionAdUnitSize1.setSize(new Size(300, 250, false));
companionAdUnitSize1.setEnvironmentType(EnvironmentType.BROWSER);
AdUnitSize companionAdUnitSize2 = new AdUnitSize();
companionAdUnitSize2.setSize(new Size(728, 90, false));
companionAdUnitSize2.setEnvironmentType(EnvironmentType.BROWSER);
// Add companions to master ad unit size.
masterAdUnitSize.setCompanions(new AdUnitSize[] {companionAdUnitSize1, companionAdUnitSize2});
// Set the size of possible creatives that can match this ad unit.
adUnit.setAdUnitSizes(new AdUnitSize[] {masterAdUnitSize});
// Create the ad unit on the server.
adUnit = inventoryService.createAdUnit(adUnit);
if (adUnit != null) {
System.out.println("An ad unit with ID \"" + adUnit.getId()
+ "\" was created under parent with ID \"" + adUnit.getParentId()
+ "\".");
} else {
System.out.println("No ad units created.");
}
} catch (Exception e) {
e.printStackTrace();
}
}
}