Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
Copyright (c) 2015 Red Hat, Inc.
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 org.ovirt.engine.sdk4.internal.xml;
import java.util.Iterator;
import org.ovirt.api.metamodel.runtime.xml.XmlWriter;
import org.ovirt.engine.sdk4.types.Group;
public class XmlGroupWriter {
public static void writeOne(Group object, XmlWriter writer) {
writeOne(object, "group", writer);
}
public static void writeOne(Group object, String tag, XmlWriter writer) {
writer.writeStartElement(tag);
if (object.hrefPresent()) {
writer.writeAttribute("href", object.href());
}
if (object.idPresent()) {
writer.writeAttribute("id", object.id());
}
if (object.commentPresent()) {
writer.writeElement("comment", object.comment());
}
if (object.descriptionPresent()) {
writer.writeElement("description", object.description());
}
if (object.domainPresent()) {
XmlDomainWriter.writeOne(object.domain(), "domain", writer);
}
if (object.domainEntryIdPresent()) {
writer.writeElement("domain_entry_id", object.domainEntryId());
}
if (object.namePresent()) {
writer.writeElement("name", object.name());
}
if (object.namespacePresent()) {
writer.writeElement("namespace", object.namespace());
}
if (object.permissionsPresent()) {
XmlPermissionWriter.writeMany(object.permissions().iterator(), "permission", "permissions", writer);
}
if (object.rolesPresent()) {
XmlRoleWriter.writeMany(object.roles().iterator(), "role", "roles", writer);
}
if (object.tagsPresent()) {
XmlTagWriter.writeMany(object.tags().iterator(), "tag", "tags", writer);
}
writer.writeEndElement();
}
public static void writeMany(Iterator list, XmlWriter writer) {
writeMany(list, "group", "groups", writer);
}
public static void writeMany(Iterator list, String singular, String plural, XmlWriter writer) {
writer.writeStartElement(plural);
while (list.hasNext()) {
XmlGroupWriter.writeOne(list.next(), singular, writer);
}
writer.writeEndElement();
}
}