You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2015/03/30 12:13:52 UTC

[2/3] isis git commit: ISIS-1052: removing HasLongId from applib

ISIS-1052: removing HasLongId from applib

... this was introduced during earlier work on supporting polymorphic associations, eventually implemented outside of isis via the isisaddons' isis-module-poly module.


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/44268762
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/44268762
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/44268762

Branch: refs/heads/master
Commit: 44268762bff77cfb8198a1623f6737750baa2ead
Parents: 3a3c7d4
Author: Dan Haywood <da...@haywood-associates.co.uk>
Authored: Mon Mar 30 10:43:50 2015 +0100
Committer: Dan Haywood <da...@haywood-associates.co.uk>
Committed: Mon Mar 30 10:43:50 2015 +0100

----------------------------------------------------------------------
 .../apache/isis/applib/services/HasLongId.java  | 25 --------------------
 1 file changed, 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/44268762/core/applib/src/main/java/org/apache/isis/applib/services/HasLongId.java
----------------------------------------------------------------------
diff --git a/core/applib/src/main/java/org/apache/isis/applib/services/HasLongId.java b/core/applib/src/main/java/org/apache/isis/applib/services/HasLongId.java
deleted file mode 100644
index b59b9cc..0000000
--- a/core/applib/src/main/java/org/apache/isis/applib/services/HasLongId.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- *  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.isis.applib.services;
-
-/**
- * To support polymorphic relationships.
- */
-public interface HasLongId {
-
-    Long __isis_getId();
-}