Skip to content

Commit

Permalink
prepared for changelog generation
Browse files Browse the repository at this point in the history
  • Loading branch information
addonis1990 committed Jul 3, 2015
1 parent 6bc07b9 commit 60dc649
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* Copyright 2015 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.jboss.forge.addon.dbma.changelog;

import org.jboss.forge.addon.resource.FileResource;

/**
* @author <a href="mailto:wicem.zrelly@gmail.com">Wissem Zrelli</a>
*
*/
public interface ChangelogFileResource extends FileResource<ChangelogFileResource>
{

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/**
* Copyright 2015 Red Hat, Inc. and/or its affiliates.
*
* Licensed under the Eclipse Public License version 1.0, available at
* http://www.eclipse.org/legal/epl-v10.html
*/
package org.jboss.forge.addon.dbma.changelog;

import org.jboss.forge.addon.resource.FileResource;

/**
* This will handle initial generation of the changelog file
* @author <a href="mailto:wicem.zrelly@gmail.com">Wissem Zrelli</a>
*
*/
public interface ChangelogGenerator
{
/**
*
* @return an empty {@link ChangelogFileResource}
*/
public ChangelogFileResource generateEmptyChangelog();

/**
*
* @return a {@link ChangelogFileResource} from the database
*/
public ChangelogFileResource generateChangelogFromDatabase();




}

0 comments on commit 60dc649

Please sign in to comment.