All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.buschmais.jqassistant.plugin.javaee6.api.model.SecurityRoleRefDescriptor Maven / Gradle / Ivy

Go to download

Plugin for jQAssistant to be able to scan and to analyze Java EE 6 related artifacts.

There is a newer version: 1.12.2
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy