use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_entityless_attribute_def_def_usedGids method getAttributeDefinition.
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_ENTITYLESS_ATTR_DEF);
attr.setFriendlyName("usedGids");
attr.setDisplayName("Used and depleted gids.");
attr.setType(LinkedHashMap.class.getName());
attr.setDescription("Contains all used and depleted Gids. Depleted means - used, but not using now.");
return attr;
}
use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_group_attribute_def_def_synchronizationEnabled method getAttributeDefinition.
@Override
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_GROUP_ATTR_DEF);
attr.setFriendlyName("synchronizationEnabled");
attr.setDisplayName("Synchronization Enabled");
attr.setType(String.class.getName());
attr.setDescription("Enables group synchronization from external source.");
return attr;
}
use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_group_resource_attribute_def_def_drupalGroupType method getAttributeDefinition.
@Override
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_GROUP_RESOURCE_ATTR_DEF);
attr.setFriendlyName("drupalGroupType");
attr.setDisplayName("Drupal group type");
attr.setType(String.class.getName());
attr.setDescription("Type of the drupal group");
return attr;
}
use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_group_resource_attribute_def_def_isSystemUnixGroup method getAttributeDefinition.
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_GROUP_RESOURCE_ATTR_DEF);
attr.setFriendlyName("isSystemUnixGroup");
attr.setDisplayName("Is system unix group");
attr.setType(Integer.class.getName());
attr.setDescription("The group is system unix group.");
return attr;
}
use of cz.metacentrum.perun.core.api.AttributeDefinition in project perun by CESNET.
the class urn_perun_member_attribute_def_def_address method getAttributeDefinition.
public AttributeDefinition getAttributeDefinition() {
AttributeDefinition attr = new AttributeDefinition();
attr.setNamespace(AttributesManager.NS_MEMBER_ATTR_DEF);
attr.setFriendlyName("address");
attr.setDisplayName("Address (for VO)");
attr.setType(String.class.getName());
attr.setDescription("Member's address in organization (can be different from user's address).");
return attr;
}
Aggregations