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

org.jboss.shrinkwrap.descriptor.api.orm10.PrePersist Maven / Gradle / Ivy

The newest version!
package org.jboss.shrinkwrap.descriptor.api.orm10; 

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.orm.*;
import org.jboss.shrinkwrap.descriptor.api.orm.OrmPrePersistCommType;
/**
 * This interface defines the contract for the  pre-persist  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface PrePersist extends Child, 
    OrmPrePersistCommType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: PrePersist ElementName: xsd:string ElementType : method-name
   // MaxOccurs: -  isGeneric: true   isAttribute: true isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the method-name attribute
    * @param methodName the value for the attribute method-name 
    * @return the current instance of PrePersist 
    */
   public PrePersist methodName(String methodName);

   /**
    * Returns the method-name attribute
    * @return the value defined for the attribute method-name 
    */
   public String getMethodName();

   /**
    * Removes the method-name attribute 
    * @return the current instance of PrePersist 
    */
   public PrePersist removeMethodName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy