All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.openjpa.ant.PCEnhancerTask Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
 * 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.    
 */
package org.apache.openjpa.ant;

import java.io.IOException;

import org.apache.openjpa.conf.OpenJPAConfiguration;
import org.apache.openjpa.conf.OpenJPAConfigurationImpl;
import org.apache.openjpa.enhance.PCEnhancer;
import org.apache.openjpa.lib.ant.AbstractTask;
import org.apache.openjpa.lib.conf.ConfigurationImpl;
import org.apache.openjpa.lib.util.Files;
import org.apache.openjpa.meta.MetaDataRepository;

/**
 * Executes the enhancer on the specified files. This task can take
 * the following arguments:
 * 
    *
  • directory
  • *
  • addDefaultConstructor
  • *
  • tmpClassLoader
  • *
  • enforcePropertyRestrictions
  • *
*/ public class PCEnhancerTask extends AbstractTask { protected PCEnhancer.Flags flags = new PCEnhancer.Flags(); protected String dirName = null; /** * Set the output directory we want the enhancer to write to. */ public void setDirectory(String dirName) { this.dirName = dirName; } /** * Set whether or not the enhancer should add a no-args constructor * to any PC that does not have a no-args constructor. */ public void setAddDefaultConstructor(boolean addDefCons) { flags.addDefaultConstructor = addDefCons; } /** * Set whether to fail if the persistent type uses property access and * bytecode analysis shows that it may be violating OpenJPA's property * access restrictions. */ public void setEnforcePropertyRestrictions(boolean fail) { flags.enforcePropertyRestrictions = fail; } /** * Set whether or not to use a default class loader for loading * the unenhanced classes. */ public void setTmpClassLoader(boolean tmpClassLoader) { flags.tmpClassLoader = tmpClassLoader; } protected ConfigurationImpl newConfiguration() { return new OpenJPAConfigurationImpl(); } protected void executeOn(String[] files) throws IOException { flags.directory = (dirName == null) ? null : Files.getFile(dirName, getClassLoader()); OpenJPAConfiguration conf = (OpenJPAConfiguration) getConfiguration(); MetaDataRepository repos = conf.newMetaDataRepositoryInstance(); PCEnhancer.run(conf, files, flags, repos, null, getClassLoader ()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy