Skip to content

Commit

Permalink
Moving EventType to kernel API
Browse files Browse the repository at this point in the history
  • Loading branch information
ajs6f committed Jan 10, 2014
1 parent 3b4e548 commit d95a59c
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 7 deletions.
Expand Up @@ -28,10 +28,6 @@
* @author ajs6f
* @date Feb 7, 2013
*/
/**
* @author ajs6f
* @date Oct 22, 2013
*/
public enum EventType {
NODE_ADDED(javax.jcr.observation.Event.NODE_ADDED, "node added"),
NODE_REMOVED(javax.jcr.observation.Event.NODE_REMOVED, "node removed"),
Expand Down
@@ -0,0 +1,24 @@
/**
* Copyright 2013 DuraSpace, Inc.
*
* Licensed 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.
*/
/**
*
*/
/**
* @author ajs6f
* @date Jan 10, 2014
*/

package org.fcrepo.kernel.utils;
Expand Up @@ -16,13 +16,11 @@

package org.fcrepo.kernel;

import static org.junit.Assert.assertTrue;
import static org.fcrepo.kernel.RdfLexicon.JCR_NAMESPACE;
import static org.fcrepo.kernel.RdfLexicon.PREMIS_NAMESPACE;
import static org.fcrepo.kernel.RdfLexicon.REPOSITORY_NAMESPACE;
import static org.fcrepo.kernel.RdfLexicon.isManagedPredicateURI;
import static org.junit.Assert.assertTrue;

import org.fcrepo.kernel.RdfLexicon;
import org.junit.Test;

public class RdfLexiconTest {
Expand Down

0 comments on commit d95a59c

Please sign in to comment.