use of com.cloud.network.nicira.NiciraNvpTag in project cloudstack by apache.
the class NiciraNvpUtilities method createLogicalSwitchPort.
public LogicalSwitchPort createLogicalSwitchPort(final CreateLogicalSwitchPortCommand command) {
final String attachmentUuid = command.getAttachmentUuid();
// Tags set to scope cs_account and account name
final List<NiciraNvpTag> tags = new ArrayList<NiciraNvpTag>();
tags.add(new NiciraNvpTag("cs_account", command.getOwnerName()));
final LogicalSwitchPort logicalSwitchPort = new LogicalSwitchPort(attachmentUuid, tags, true);
return logicalSwitchPort;
}
Aggregations