com.hcl.domino.jna.internal.structs.NotesAdminReqParams Maven / Gradle / Ivy
The newest version!
/*
* ==========================================================================
* Copyright (C) 2019-2022 HCL America, Inc. ( http://www.hcl.com/ )
* All rights reserved.
* ==========================================================================
* 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 .
*
* 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.hcl.domino.jna.internal.structs;
import java.util.Arrays;
import java.util.List;
import com.hcl.domino.jna.internal.gc.handles.HANDLE;
import com.sun.jna.Pointer;
import com.sun.jna.Structure;
/**
* This file was autogenerated by JNAerator,
* a tool written by Olivier Chafik that uses a few opensource projects..
* For help, please visit NativeLibs4Java , Rococoa, or JNA.
*/
public class NotesAdminReqParams extends BaseStructure {
/** Reserved */
public int Flags;
/** DELETE_xxxx_IN_NAB defined above */
public int dwDeleteInNABType;
/**
* if dwDeleteInNABType equals
* DELETE_PERSON_IN_NAB a pointer to a
* group (termination perhaps) to have
* the name added
* C type : char*
*/
public Pointer chGroupName;
/**
* if dwDeleteInNABType equals
* DELETE_PERSON_IN_NAB a pointer to
* the person's Alternate Name
* C type : char*
*/
public Pointer chAltName;
/**
* for ADMINReqMoveComplete, a pointer
* to a new first name for the
* person
* C type : char*
*/
public Pointer chFirstName;
/**
* for ADMINReqMoveComplete, a
* pointer to a new middle initial for
* the person
* C type : char*
*/
public Pointer chMiddleInitial;
/**
* for ADMINReqMoveComplete, a pointer
* to a new last name for the person
* C type : char*
*/
public Pointer chLastName;
/**
* for ADMINReqRename,
* ADMINReqRecertify, and
* ADMINReqMoveComplete, a pointer to a
* new alternate common name for the
* person
* C type : char*
*/
public Pointer chAltCommonName;
/**
* for ADMINReqRename,
* ADMINReqRecertify, and
* ADMINReqMoveComplete, a pointer to a
* new alternate org unit for the
* person
* C type : char*
*/
public Pointer chAltOrgUnitName;
/**
* for ADMINReqRename,
* ADMINReqRecertify, and
* ADMINReqMoveComplete, a pointer to a
* new alternate language for the
* person
* C type : char*
*/
public Pointer chAltLanguage;
/**
* for ADMINReqMoveUserInHier,
* TRUE indicates that support for a
* simultaneous hierarchy move and name
* change. Recognized only by v5.02
* and above clients and servers
*/
public boolean fDontUseV1ChangeRequest;
/**
* 5.x structure ended here. The following fields were added for Rnext
* for ADMINReqDeleteInNAB, a handle to
* the directory from which the Person,
* Server, or Group is to be deleted if
* the target directory is not names.nsf
* C type : DBHANDLE
*/
public HANDLE dbhDirectory;
public NotesAdminReqParams() {
super();
}
@SuppressWarnings("nls")
@Override
protected List getFieldOrder() {
return Arrays.asList("Flags", "dwDeleteInNABType", "chGroupName", "chAltName", "chFirstName", "chMiddleInitial", "chLastName", "chAltCommonName", "chAltOrgUnitName", "chAltLanguage", "fDontUseV1ChangeRequest", "dbhDirectory");
}
public NotesAdminReqParams(Pointer peer) {
super(peer);
}
public static class ByReference extends NotesAdminReqParams implements Structure.ByReference {
};
public static class ByValue extends NotesAdminReqParams implements Structure.ByValue {
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy