| /* |
| * 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. |
| */ |
| import groovy.sql.Sql; |
| import groovy.sql.DataSet; |
| |
| // Parameters: |
| // The connector sends us the following: |
| // connection : SQL connection |
| // action: String correponding to the action ("CREATE" here) |
| // log: a handler to the Log facility |
| // objectClass: a String describing the Object class (__ACCOUNT__ / __GROUP__ / other) |
| // id: The entry identifier (OpenICF "Name" atribute. (most often matches the uid) |
| // attributes: an Attribute Map, containg the <String> attribute name as a key |
| // and the <List> attribute value(s) as value. |
| // password: password string, clear text |
| // options: a handler to the OperationOptions Map |
| |
| log.info("Entering " + action + " Script"); |
| |
| def sql = new Sql(connection); |
| |
| switch ( objectClass ) { |
| case "__PRINTER__": |
| sql.execute("INSERT INTO TESTPRINTER (id, printername, location, lastmodification) VALUES (?,?,?,?)", |
| [ |
| id, |
| attributes.get("PRINTERNAME").get(0), |
| attributes.get("LOCATION").get(0), |
| new Date() |
| ]) |
| break |
| |
| default: |
| id; |
| } |
| |
| return id; |