Creating a User
From Apache OpenOffice Wiki
< Documentation | DevGuide
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
The procedure to create a user is the same. The com.sun.star.sdbcx.XDataDescriptorFactory interface is used from the users container. Create a user with the UserDescriptor
. The com.sun.star.sdbcx.UserDescriptor has an additional property than the User
service supports. This additional property is the Password
property which should be set. Then the UserDescriptor
object can be appended to the user container.
// create a user
public static void createUser(XNameAccess xUsers) throws Exception,SQLException {
System.out.println("Example createUser");
XDataDescriptorFactory xUserFac = (XDataDescriptorFactory)UnoRuntime.queryInterface(
XDataDescriptorFactory.class, xUsers);
if (xUserFac != null) {
// create the new table
XPropertySet xUser = xUserFac.createDataDescriptor();
// set the name of the new table
xUser.setPropertyValue("Name", "BOSS");
xUser.setPropertyValue("Password","BOSSWIFENAME");
XAppend xAppend = (XAppend)UnoRuntime.queryInterface(XAppend.class, xUserFac);
xAppend.appendByDescriptor(xUser);
}
}
Content on this page is licensed under the Public Documentation License (PDL). |