com.adaptrex.core.security.SecureField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adaptrex-core Show documentation
Show all versions of adaptrex-core Show documentation
The Core Adaptrex Framework
/*
* Copyright 2012 Adaptrex, LLC
*
* 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.
*/
package com.adaptrex.core.security;
import java.util.List;
public class SecureField {
private String name;
private List read;
private List create;
public List getRead() {
return this.read;
}
public List getCreate() {
return this.create;
}
public List getUpdate() {
return this.update;
}
public List getDelete() {
return this.delete;
}
private List update;
private List delete;
public void setName(String name) {
this.name = name;
}
public void setRead(List read) {
this.read = read;
}
public void setCreate(List create) {
this.create = create;
}
public void setUpdate(List update) {
this.update = update;
}
public void setDelete(List delete) {
this.delete = delete;
}
public String getName() {
return this.name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy