use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_member_attribute_def_def_mail method getAttributeDefinition.
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_MEMBER_ATTR_DEF);
attr.setFriendlyName("mail");
attr.setDisplayName("Mail");
attr.setType(String.class.getName());
attr.setDescription("Member's trusted mail.");
return attr;
}
use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_group_resource_attribute_def_def_projectDirPermissions method getAttributeDefinition.
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_GROUP_RESOURCE_ATTR_DEF);
attr.setFriendlyName("projectDirPermissions");
attr.setDisplayName("Project directory permission");
attr.setType(Integer.class.getName());
attr.setDescription("Permissions (ACL) to directory, where the project exists. Standard unix file system permissions in numeric format.");
return attr;
}
use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_group_resource_attribute_def_def_projectOwnerLogin method getAttributeDefinition.
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_GROUP_RESOURCE_ATTR_DEF);
attr.setFriendlyName("projectOwnerLogin");
attr.setDisplayName("Project owner login");
attr.setType(String.class.getName());
attr.setDescription("Login of user, who is owner of project directory.");
return attr;
}
use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_group_resource_attribute_def_virt_googleGroupName method getAttributeDefinition.
@Override
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_GROUP_RESOURCE_ATTR_VIRT);
attr.setFriendlyName("googleGroupName");
attr.setDisplayName("Google group name");
attr.setType(String.class.getName());
attr.setDescription("Name of this group in google groups represented by the resource.");
return attr;
}
use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_group_resource_attribute_def_virt_unixGroupName method getAttributeDefinition.
@Override
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_GROUP_RESOURCE_ATTR_VIRT);
attr.setFriendlyName("unixGroupName");
attr.setDisplayName("Unix group name");
attr.setType(String.class.getName());
attr.setDescription("Unix group name. It is applied only if isUnixGroup is set.");
return attr;
}
Aggregations