Subversion Repositories XServices

Rev

Rev 104 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 104 Rev 121
Line 1... Line -...
1
<<<<<<< .mine
-
 
2
package net.brutex.xservices.security;
-
 
3
 
-
 
4
import java.util.UUID;
-
 
5
 
-
 
6
public abstract interface Identity
-
 
7
{
-
 
8
  public abstract UUID getUUID();
-
 
9
}
-
 
10
 
-
 
11
/* Location:           C:\Users\brosenberger\Documents\My Box Files\XBridgeNG-download\XServices-20130131 - Kopie\WEB-INF\classes\net.zip
-
 
12
 * Qualified Name:     net.brutex.xservices.security.Identity
-
 
13
 * JD-Core Version:    0.6.2
-
 
14
 */=======
-
 
15
/*
1
/*
16
 *   Copyright 2012 Brian Rosenberger (Brutex Network)
2
 *   Copyright 2012 Brian Rosenberger (Brutex Network)
17
 *
3
 *
18
 *   Licensed under the Apache License, Version 2.0 (the "License");
4
 *   Licensed under the Apache License, Version 2.0 (the "License");
19
 *   you may not use this file except in compliance with the License.
5
 *   you may not use this file except in compliance with the License.
Line 30... Line 16...
30
 
16
 
Line 31... Line 17...
31
package net.brutex.xservices.security;
17
package net.brutex.xservices.security;
Line 32... Line -...
32
 
-
 
33
import java.util.UUID;
-
 
34
 
18
 
35
 
19
import java.util.UUID;
36
 
20
 
37
public interface Identity {
-
 
38
 
-
 
39
	public UUID getUUID();
21
public abstract interface Identity
40
	
-