com.buschmais.jqassistant.plugin.javaee6.api.model.SecurityRoleRefDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee6 Show documentation
Show all versions of javaee6 Show documentation
Plugin for jQAssistant to be able to scan and to
analyze Java EE 6 related artifacts.
package com.buschmais.jqassistant.plugin.javaee6.api.model;
import java.util.List;
import com.buschmais.xo.neo4j.api.annotation.Label;
import com.buschmais.xo.neo4j.api.annotation.Relation;
@Label("SecurityRoleRef")
public interface SecurityRoleRefDescriptor extends WebDescriptor {
String getRoleName();
void setRoleName(String roleName);
@Relation("HAS_DESCRIPTION")
List getDescriptions();
String getRoleLink();
void setRoleLink(String value);
}