All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.GuestPosixFileAttributes Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for GuestPosixFileAttributes complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="GuestPosixFileAttributes">
 *   <complexContent>
 *     <extension base="{urn:vim25}GuestFileAttributes">
 *       <sequence>
 *         <element name="ownerId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="groupId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="permissions" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GuestPosixFileAttributes", propOrder = { "ownerId", "groupId", "permissions" }) public class GuestPosixFileAttributes extends GuestFileAttributes { protected Integer ownerId; protected Integer groupId; protected Long permissions; /** * Gets the value of the ownerId property. * * @return * possible object is * {@link Integer } * */ public Integer getOwnerId() { return ownerId; } /** * Sets the value of the ownerId property. * * @param value * allowed object is * {@link Integer } * */ public void setOwnerId(Integer value) { this.ownerId = value; } /** * Gets the value of the groupId property. * * @return * possible object is * {@link Integer } * */ public Integer getGroupId() { return groupId; } /** * Sets the value of the groupId property. * * @param value * allowed object is * {@link Integer } * */ public void setGroupId(Integer value) { this.groupId = value; } /** * Gets the value of the permissions property. * * @return * possible object is * {@link Long } * */ public Long getPermissions() { return permissions; } /** * Sets the value of the permissions property. * * @param value * allowed object is * {@link Long } * */ public void setPermissions(Long value) { this.permissions = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy