ScimEnterprise.java 2.2 KB
Newer Older
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Copyright [2020] [MaxKey of copyright http://www.maxkey.top]
 * 
 * Licensed 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.
 */
 

MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
18 19 20 21
package org.maxkey.identity.scim.resources;

import java.io.Serializable;

M
MaxKey 已提交
22
public class ScimEnterprise implements Serializable {
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
23
    private static final long serialVersionUID = -204619629148409697L;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
24
    
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
25 26 27 28
    private  String employeeNumber;
    private  String costCenter;
    private  String organization;
    private  String division;
M
MaxKey 已提交
29
    private  String departmentId;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
30
    private  String department;
M
MaxKey 已提交
31
    private  ScimManager manager;
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
    
    public String getEmployeeNumber() {
        return employeeNumber;
    }
    public void setEmployeeNumber(String employeeNumber) {
        this.employeeNumber = employeeNumber;
    }
    public String getCostCenter() {
        return costCenter;
    }
    public void setCostCenter(String costCenter) {
        this.costCenter = costCenter;
    }
    public String getOrganization() {
        return organization;
    }
    public void setOrganization(String organization) {
        this.organization = organization;
    }
    public String getDivision() {
        return division;
    }
    public void setDivision(String division) {
        this.division = division;
    }
M
MaxKey 已提交
57 58 59 60 61 62 63 64
    
    public String getDepartmentId() {
		return departmentId;
	}
	public void setDepartmentId(String departmentId) {
		this.departmentId = departmentId;
	}
	public String getDepartment() {
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
65 66 67 68 69
        return department;
    }
    public void setDepartment(String department) {
        this.department = department;
    }
M
MaxKey 已提交
70
    public ScimManager getManager() {
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
71 72
        return manager;
    }
M
MaxKey 已提交
73
    public void setManager(ScimManager manager) {
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
74 75
        this.manager = manager;
    }
M
MaxKey 已提交
76
    public ScimEnterprise() {
MaxKey单点登录官方's avatar
MaxKey单点登录官方 已提交
77 78 79 80
    }
    
    
}