org.apache.camel.component.openstack.keystone.KeystoneConstants Maven / Gradle / Ivy
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.openstack.keystone;
import org.apache.camel.component.openstack.common.OpenstackConstants;
import org.apache.camel.spi.Metadata;
public final class KeystoneConstants extends OpenstackConstants {
public static final String REGIONS = "regions";
public static final String DOMAINS = "domains";
public static final String PROJECTS = "projects";
public static final String USERS = "users";
public static final String GROUPS = "groups";
@Metadata(description = "The description.", javaType = "String")
public static final String DESCRIPTION = "description";
@Metadata(label = "group project user", description = "ID of the domain.", javaType = "String")
public static final String DOMAIN_ID = "domainId";
@Metadata(label = "project", description = "The parent project ID.", javaType = "String")
public static final String PARENT_ID = "parentId";
@Metadata(label = "user", description = "User's password.", javaType = "String")
public static final String PASSWORD = "password";
@Metadata(label = "user", description = "User's email.", javaType = "String")
public static final String EMAIL = "email";
@Metadata(label = "group", description = "ID of the user.", javaType = "String")
public static final String USER_ID = "userId";
@Metadata(label = "group", description = "ID of the group.", javaType = "String")
public static final String GROUP_ID = "groupId";
public static final String ADD_USER_TO_GROUP = "addUserToGroup";
public static final String CHECK_GROUP_USER = "checkUserGroup";
public static final String REMOVE_USER_FROM_GROUP = "removeUserFromGroup";
private KeystoneConstants() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy