blob: 59edce2a7ac7385f4336997920a64ddf4f832200 [file] [log] [blame]
/*
* 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.fineract.cn.identity.internal.repository;
import com.datastax.driver.mapping.annotations.ClusteringColumn;
import com.datastax.driver.mapping.annotations.Column;
import com.datastax.driver.mapping.annotations.PartitionKey;
import com.datastax.driver.mapping.annotations.Table;
/**
* @author Myrle Krantz
*/
@SuppressWarnings({"unused", "WeakerAccess"})
@Table(name = ApplicationPermissionUsers.TABLE_NAME)
public class ApplicationPermissionUsersEntity {
@PartitionKey
@Column(name = ApplicationPermissionUsers.APPLICATION_IDENTIFIER_COLUMN)
private String applicationIdentifier;
@SuppressWarnings("DefaultAnnotationParam")
@ClusteringColumn(0)
@Column(name = ApplicationPermissionUsers.PERMITTABLE_GROUP_IDENTIFIER_COLUMN)
private String permittableGroupIdentifier;
@ClusteringColumn(1)
@Column(name = ApplicationPermissionUsers.USER_IDENTIFIER_COLUMN)
private String userIdentifier;
@Column(name = ApplicationPermissionUsers.ENABLED_COLUMN)
private Boolean enabled;
public ApplicationPermissionUsersEntity() {
}
public ApplicationPermissionUsersEntity(String applicationIdentifier, String permittableGroupIdentifier, String userIdentifier, Boolean enabled) {
this.applicationIdentifier = applicationIdentifier;
this.permittableGroupIdentifier = permittableGroupIdentifier;
this.userIdentifier = userIdentifier;
this.enabled = enabled;
}
public String getApplicationIdentifier() {
return applicationIdentifier;
}
public void setApplicationIdentifier(String applicationIdentifier) {
this.applicationIdentifier = applicationIdentifier;
}
public String getPermittableGroupIdentifier() {
return permittableGroupIdentifier;
}
public void setPermittableGroupIdentifier(String permittableGroupIdentifier) {
this.permittableGroupIdentifier = permittableGroupIdentifier;
}
public String getUserIdentifier() {
return userIdentifier;
}
public void setUserIdentifier(String userIdentifier) {
this.userIdentifier = userIdentifier;
}
public Boolean getEnabled() {
return enabled;
}
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
}