UpdateObjectViewType updateObject = new UpdateObjectViewType();
updateObject.setObjectIdentifier(new ObjectIdentifierType[]
{objectId});
modifyCmd.setUpdateObject(updateObject);
NodeModificationType nodeModificationType = new NodeModificationType();
PathValueType pathValueType = new PathValueType();
nodeModificationType.setUpdateNode(pathValueType);
//adds the policy ID to the deviceobj:
pathValueType.setXpath("./nsmpolicy-id"):
pathValueType.setValue(this.createOpaqueDataType
("<nsmpolicy-id>&1.nsmpolicy.?????????test </nsmpolicy-id>"));
updateObject.setObjectModification(new ObjectModificationType());
updateObject.getObjectModification().addModification(nodeModificationType);
request.addCommand(modifyCmd);
//invokes the service:
ModifyObjectViewResponse response =
PolicyAssignmentTest.stub.ModifyObjectViewRequest(request);
assertTrue(response.getStatus() == StatusCodeType.Success);
} catch (Exception e) {
e.printStackTrace();
}
}
Remove a Policy Assignment
This Data Centric Service API code sample removes a policy assignment from a device.
/**
* Prerequisite: there is a device with id 2
* there is a policy with name test
*/
public void testUnAssignPolicy2Device() {
try {
System.out.println("Running testUnAssignPolicy2Device()");
ModifyObjectViewRequest request = new ModifyObjectViewRequest();
request.setAuthToken(PolicyUnAssignmentTest.authToken);
//creates an object of ModifyViewCommandType:
ModifyViewCommandType modifyCmd = new ModifyViewCommandType();
//specifies the device from which to unassign the policy:
ObjectIdentifierType objectId = new ObjectIdentifierType();
objectId.setCategory("deviceobj");
objectId.setDomainId(new UnsignedShort("1"));
ObjectIdOrNameType objIdOrName = new ObjectIdOrNameType();
objIdOrName.setObjectId(new UnsignedInt(0));
objectId.setObjectIdOrName(objIdOrName);
103
Copyright © 2010, Juniper Networks, Inc.
Chapter 10: Using APIs for Policy Management
Содержание NETWORK AND SECURITY MANAGER 2010.4 - API GUIDE REV 1
Страница 6: ...Copyright 2010 Juniper Networks Inc vi...
Страница 10: ...Copyright 2010 Juniper Networks Inc x Network and Security Manager 2010 4 API Guide...
Страница 12: ...Copyright 2010 Juniper Networks Inc xii Network and Security Manager 2010 4 API Guide...
Страница 20: ...Copyright 2010 Juniper Networks Inc 2 Network and Security Manager 2010 4 API Guide...
Страница 24: ...Copyright 2010 Juniper Networks Inc 6 Network and Security Manager 2010 4 API Guide...
Страница 34: ...Copyright 2010 Juniper Networks Inc 16 Network and Security Manager 2010 4 API Guide...
Страница 58: ...Figure 10 IDP Rulebase Copyright 2010 Juniper Networks Inc 40 Network and Security Manager 2010 4 API Guide...
Страница 92: ...Copyright 2010 Juniper Networks Inc 74 Network and Security Manager 2010 4 API Guide...
Страница 98: ...Copyright 2010 Juniper Networks Inc 80 Network and Security Manager 2010 4 API Guide...
Страница 100: ...Copyright 2010 Juniper Networks Inc 82 Network and Security Manager 2010 4 API Guide...
Страница 112: ...Copyright 2010 Juniper Networks Inc 94 Network and Security Manager 2010 4 API Guide...
Страница 128: ...Copyright 2010 Juniper Networks Inc 110 Network and Security Manager 2010 4 API Guide...
Страница 138: ...Copyright 2010 Juniper Networks Inc 120 Network and Security Manager 2010 4 API Guide...
Страница 152: ...Copyright 2010 Juniper Networks Inc 134 Network and Security Manager 2010 4 API Guide...
Страница 165: ...PART 6 Index Index on page 149 147 Copyright 2010 Juniper Networks Inc...
Страница 166: ...Copyright 2010 Juniper Networks Inc 148 Network and Security Manager 2010 4 API Guide...