Skip to content

Commit

Permalink
finished renaming of javalib package
Browse files Browse the repository at this point in the history
  • Loading branch information
maartendecat committed Aug 8, 2014
1 parent abc25fc commit f039fa6
Show file tree
Hide file tree
Showing 14 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions src/main/java/stapl/javaapi/pdp/PDP.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp;
package stapl.javaapi.pdp;

import java.util.Arrays;
import java.util.List;
Expand All @@ -11,7 +11,7 @@
import stapl.core.ConcreteValue;
import stapl.core.Result;
import stapl.core.pdp.AttributeFinder;
import stapl.javalib.pdp.attributevalues.AttributeValue;
import stapl.javaapi.pdp.attributevalues.AttributeValue;

/**
* Java wrapper for the Scala PDP class. The Scala class can be used directly
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import stapl.core.Attribute;
import stapl.core.ConcreteValue;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import org.joda.time.LocalDate;
import org.joda.time.LocalDateTime;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import stapl.core.Attribute;
import stapl.core.BoolImpl;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import java.util.Arrays;
import java.util.LinkedList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import org.joda.time.LocalDateTime;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import java.util.Arrays;
import java.util.LinkedList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import org.joda.time.LocalDate;
import stapl.core.Attribute;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import java.util.Arrays;
import java.util.LinkedList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import scala.util.Left;
import stapl.core.Attribute;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import java.util.Arrays;
import java.util.LinkedList;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import stapl.core.Attribute;
import stapl.core.ConcreteValue;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package stapl.javalib.pdp.attributevalues;
package stapl.javaapi.pdp.attributevalues;

import java.util.Arrays;
import java.util.LinkedList;
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/stapl/javaapi/pdp/example/SimpleExample.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package stapl.javalib.pdp.example;
package stapl.javaapi.pdp.example;

import stapl.core.AttributeContainer;
import stapl.core.Policy;
import stapl.core.Result;
import stapl.core.examples.*;
import stapl.javalib.pdp.PDP;
import static stapl.javalib.pdp.attributevalues.AttributeValueFactory.*;
import stapl.javaapi.pdp.PDP;
import static stapl.javaapi.pdp.attributevalues.AttributeValueFactory.*;

public class SimpleExample {

Expand Down

0 comments on commit f039fa6

Please sign in to comment.