Class DeveloperDTO


  • public class DeveloperDTO
    extends org.osgi.dto.DTO
    A representation of developer
    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String email
      The email of the developer.
      java.lang.String identifier
      The display name of the developer.
      java.lang.String name
      The display name of the developer.
      java.lang.String organization
      The organization name of the developer.
      java.lang.String organizationUrl
      The organization URL of the developer.
      java.util.List<java.lang.String> roles
      The roles of the developer.
      java.lang.Integer timezone
      The timezone of the developer.
    • Constructor Summary

      Constructors 
      Constructor Description
      DeveloperDTO()  
    • Method Summary

      • Methods inherited from class org.osgi.dto.DTO

        toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • identifier

        public java.lang.String identifier
        The display name of the developer. Must not be null
      • name

        public java.lang.String name
        The display name of the developer.

        If not specified this field must be null.

      • email

        public java.lang.String email
        The email of the developer.

        If not specified this field must be null.

      • roles

        public java.util.List<java.lang.String> roles
        The roles of the developer.

        If not specified this field must be empty.

      • organization

        public java.lang.String organization
        The organization name of the developer.

        If not specified this field must be null.

      • organizationUrl

        public java.lang.String organizationUrl
        The organization URL of the developer.

        If not specified this field must be null.

      • timezone

        public java.lang.Integer timezone
        The timezone of the developer.

        If not specified this field must be null.

    • Constructor Detail

      • DeveloperDTO

        public DeveloperDTO()