mirror of
https://github.com/OpenNebula/one.git
synced 2025-01-06 13:17:42 +03:00
feature #198: OCA-JAVA Client Session example
This commit is contained in:
parent
c81bcc2495
commit
d27886b3a5
Binary file not shown.
45
src/oca/java/share/examples/SessionInit.java
Normal file
45
src/oca/java/share/examples/SessionInit.java
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
/*******************************************************************************
|
||||||
|
* Copyright 2002-2010, OpenNebula Project Leads (OpenNebula.org)
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
******************************************************************************/
|
||||||
|
import org.opennebula.client.Client;
|
||||||
|
|
||||||
|
public class SessionInit {
|
||||||
|
|
||||||
|
public static void main(String[] args)
|
||||||
|
{
|
||||||
|
System.out.print("Creating a new OpenNebula session...");
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Client oneClient = new Client();
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
System.out.println(e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("ok");
|
||||||
|
|
||||||
|
System.out.println("Wrong session initialization...");
|
||||||
|
try
|
||||||
|
{
|
||||||
|
Client oneClient = new Client("wrong_password_token",null);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
System.out.println("\t" + e.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user