org.appng.appngizer.model.xml.Linkable Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.07.28 at 12:11:00 PM CEST
//
package org.appng.appngizer.model.xml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for linkable complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="linkable">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="links" type="{http://www.appng.org/schema/appngizer}links" minOccurs="0"/>
* </sequence>
* <attribute name="self" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "linkable", propOrder = {
"links"
})
@XmlSeeAlso({
Applications.class,
Properties.class,
Repositories.class,
Home.class,
Platform.class,
Packages.class,
Sites.class,
Subjects.class,
Roles.class,
Groups.class,
Permissions.class,
Nameable.class,
Database.class,
Databases.class
})
public abstract class Linkable {
protected Links links;
@XmlAttribute(name = "self")
protected String self;
/**
* Gets the value of the links property.
*
* @return
* possible object is
* {@link Links }
*
*/
public Links getLinks() {
return links;
}
/**
* Sets the value of the links property.
*
* @param value
* allowed object is
* {@link Links }
*
*/
public void setLinks(Links value) {
this.links = value;
}
/**
* Gets the value of the self property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSelf() {
return self;
}
/**
* Sets the value of the self property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSelf(String value) {
this.self = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy