blob: 55afec77a81e5ac21390d3956a2cd821814fab45 [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.ranger.view;
/**
* UserGroupInfo
*
*/
import org.codehaus.jackson.annotate.JsonAutoDetect;
import org.codehaus.jackson.annotate.JsonAutoDetect.Visibility;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.map.annotate.JsonSerialize;
import javax.xml.bind.annotation.XmlRootElement;
@JsonAutoDetect(getterVisibility=Visibility.NONE, setterVisibility=Visibility.NONE, fieldVisibility=Visibility.ANY)
@JsonSerialize(include=JsonSerialize.Inclusion.NON_NULL )
@JsonIgnoreProperties(ignoreUnknown=true)
@XmlRootElement
public class VXUnixSyncSourceInfo implements java.io.Serializable {
private static final long serialVersionUID = 1L;
private String unixBackend;
private String fileName;
private String syncTime;
private String lastModified;
private String minUserId;
private String minGroupId;
private long totalUsersSynced;
private long totalGroupsSynced;
public VXUnixSyncSourceInfo() {
}
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public String getSyncTime() {
return syncTime;
}
public void setSyncTime(String syncTime) {
this.syncTime = syncTime;
}
public String getLastModified() {
return lastModified;
}
public void setLastModified(String lastModified) {
this.lastModified = lastModified;
}
public String getUnixBackend() {
return unixBackend;
}
public void setUnixBackend(String unixBackend) {
this.unixBackend = unixBackend;
}
public String getMinUserId() {
return minUserId;
}
public void setMinUserId(String minUserId) {
this.minUserId = minUserId;
}
public String getMinGroupId() {
return minGroupId;
}
public void setMinGroupId(String minGroupId) {
this.minGroupId = minGroupId;
}
public long getTotalUsersSynced() {
return totalUsersSynced;
}
public void setTotalUsersSynced(long totalUsersSynced) {
this.totalUsersSynced = totalUsersSynced;
}
public long getTotalGroupsSynced() {
return totalGroupsSynced;
}
public void setTotalGroupsSynced(long totalGroupsSynced) {
this.totalGroupsSynced = totalGroupsSynced;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
toString(sb);
return sb.toString();
}
public StringBuilder toString(StringBuilder sb) {
sb.append("{\"unixBackend\":\"").append(unixBackend);
sb.append("\", \"fileName\":\"").append(fileName);
sb.append("\", \"syncTime\":\"").append(syncTime);
sb.append("\", \"lastModified\":\"").append(lastModified);
sb.append("\", \"minUserId\":\"").append(minUserId);
sb.append("\", \"minGroupId\":\"").append(minGroupId);
sb.append("\", \"totalUsersSynced\":\"").append(totalUsersSynced);
sb.append("\", \"totalGroupsSynced\":\"").append(totalGroupsSynced);
sb.append("\"}");
return sb;
}
}