101 lines
2.4 KiB
Java
101 lines
2.4 KiB
Java
/*
|
|
* Copyright (c) 2005-2011, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
|
*
|
|
* WSO2 Inc. 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 cz.trask.migration.model.v32;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Objects;
|
|
|
|
public class Scope implements Serializable{
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
String key;
|
|
String name;
|
|
String roles;
|
|
String description;
|
|
String id;
|
|
int usageCount;
|
|
|
|
public String getKey() {
|
|
return key;
|
|
}
|
|
|
|
public void setKey(String key) {
|
|
this.key = key;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getRoles() {
|
|
return roles;
|
|
}
|
|
|
|
public void setRoles(String roles) {
|
|
this.roles = roles;
|
|
}
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public int getUsageCount() {
|
|
return usageCount;
|
|
}
|
|
|
|
public void setUsageCount(int usageCount) {
|
|
this.usageCount = usageCount;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
if (this == o) return true;
|
|
if (o == null || getClass() != o.getClass()) return false;
|
|
|
|
Scope scope = (Scope) o;
|
|
|
|
if (id != null ? !id.equals(scope.id) : scope.id != null) return false;
|
|
if (!key.equals(scope.key)) return false;
|
|
if (!name.equals(scope.name)) return false;
|
|
if (roles != null ? !roles.equals(scope.roles) : scope.roles != null) return false;
|
|
return description != null ? description.equals(scope.description) : scope.description == null;
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return Objects.hash(key, name, roles, description, id);
|
|
}
|
|
}
|