Class ExtensionDTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- org.osgi.service.jaxrs.runtime.dto.BaseDTO
-
- org.osgi.service.jaxrs.runtime.dto.BaseExtensionDTO
-
- org.osgi.service.jaxrs.runtime.dto.ExtensionDTO
-
public class ExtensionDTO extends BaseExtensionDTO
Represents a JAX-RS Filter service currently being hosted by theJaxrsServiceRuntime
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String[]
consumes
The media types consumed by this service, if provided in anConsumes
annotationResourceDTO[]
filteredByName
The resourceDTOs that are mapped to this extension using aNameBinding
annotationjava.lang.String[]
nameBindings
The full names of theNameBinding
annotations applied to this extension, if anyjava.lang.String[]
produces
The media types produced by this service, if provided in anProduces
annotation-
Fields inherited from class org.osgi.service.jaxrs.runtime.dto.BaseExtensionDTO
extensionTypes
-
-
Constructor Summary
Constructors Constructor Description ExtensionDTO()
-
-
-
Field Detail
-
produces
public java.lang.String[] produces
The media types produced by this service, if provided in anProduces
annotation
-
consumes
public java.lang.String[] consumes
The media types consumed by this service, if provided in anConsumes
annotation
-
nameBindings
public java.lang.String[] nameBindings
The full names of theNameBinding
annotations applied to this extension, if any
-
filteredByName
public ResourceDTO[] filteredByName
The resourceDTOs that are mapped to this extension using aNameBinding
annotation
-
-