Class ProfileDTO

  • All Implemented Interfaces:
    Serializable

    public class ProfileDTO
    extends Object
    implements Serializable
    Data Transfer Object for compliance profiles. The class exceptionally uses getter and setter (instead of just public instvars) for beeing able to (almost) guarantee the profile ident code to be uppercase.
    See Also:
    Serialized Form
    • Field Detail

      • identCode

        public String identCode
        The internal identcode of the profile
        (max. length: 20)
        Prefer using the getter/setter to accessing this field, to let the DTO convert all identCodes to upperCase.
      • name

        public String name
        The human-readable name of the profile
        (max. length: 60)
    • Constructor Detail

      • ProfileDTO

        public ProfileDTO()
    • Method Detail

      • getIdentCode

        public String getIdentCode()
      • setIdentCode

        public void setIdentCode​(String string)
      • getName

        public String getName()
      • setName

        public void setName​(String string)