View Javadoc

1   package com.atlassian.plugins.rest.doclet.generators.schema.beans.permissionscheme;
2   
3   import java.net.URI;
4   import java.util.Collection;
5   import javax.xml.bind.annotation.XmlElement;
6   import javax.xml.bind.annotation.XmlRootElement;
7   
8   /**
9    * @since v4.4
10   */
11  @SuppressWarnings ({ "UnusedDeclaration" })
12  @XmlRootElement (name = "projectRole")
13  public class ProjectRoleBean
14  {
15      @XmlElement
16      public URI self;
17  
18      @XmlElement
19      public String name;
20  
21      @XmlElement
22      public Long id;
23  
24      @XmlElement
25      public String description;
26  
27      @XmlElement
28      public Collection<RoleActorBean> actors;
29  }